summaryrefslogtreecommitdiff
path: root/talerblog/blog/templates/request_payment.html
blob: c30b84701b0963e188480a94fbb38cc05c49e075 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{% extends "templates/base.html" %}
{% block meta %}
<meta http-equiv="refresh" content="1">
{% endblock meta %}
{% block main %}

<h1>Payment Required</h1>

<div class="taler-installed-hide">
  <p>
  Looks like your browser doesn't support GNU Taler payments.  You can try
  installing a <a href="https://taler.net/en/wallet.html">wallet browser extension</a>.
  </p>
</div>

<div>

  <p>
  You can use this QR code to pay with your mobile wallet:
  </p>

  {{ qrcode_svg | safe }}

  <p>
  Click <a href="{{ taler_pay_uri }}">this link</a> to open your system's Taler wallet if it exists.
  </p>

</div>

{% endblock main %}