summaryrefslogtreecommitdiff
path: root/talerblog
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2019-08-26 17:35:12 +0200
committerFlorian Dold <florian.dold@gmail.com>2019-08-26 17:35:12 +0200
commitb02259403209f33e1afcd89a6a378ddbf2cd20d5 (patch)
tree2118fbfabce989911ba8a03934032cd134bc88dc /talerblog
parent75a0149f73c025ef7de18029f1e39c653950e81f (diff)
downloadblog-b02259403209f33e1afcd89a6a378ddbf2cd20d5.tar.gz
blog-b02259403209f33e1afcd89a6a378ddbf2cd20d5.tar.bz2
blog-b02259403209f33e1afcd89a6a378ddbf2cd20d5.zip
text
Diffstat (limited to 'talerblog')
-rw-r--r--talerblog/blog/templates/base.html2
-rw-r--r--talerblog/blog/templates/request_payment.html9
2 files changed, 8 insertions, 3 deletions
diff --git a/talerblog/blog/templates/base.html b/talerblog/blog/templates/base.html
index ca33d03..52e97b7 100644
--- a/talerblog/blog/templates/base.html
+++ b/talerblog/blog/templates/base.html
@@ -20,7 +20,7 @@
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
{% block meta %}{% endblock %}
- <title>Taler Donation Demo</title>
+ <title>Taler Essay Shop Demo</title>
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='web-common/pure.css') }}" />
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='web-common/demo.css') }}" />
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='web-common/taler-fallback.css') }}" id="taler-presence-stylesheet" />
diff --git a/talerblog/blog/templates/request_payment.html b/talerblog/blog/templates/request_payment.html
index 122b0ee..c30b847 100644
--- a/talerblog/blog/templates/request_payment.html
+++ b/talerblog/blog/templates/request_payment.html
@@ -4,15 +4,19 @@
{% endblock meta %}
{% block main %}
+<h1>Payment Required</h1>
+
<div class="taler-installed-hide">
- <h1>Payment Required</h1>
<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 also use this QR code to pay with your mobile wallet:
+ You can use this QR code to pay with your mobile wallet:
</p>
{{ qrcode_svg | safe }}
@@ -22,4 +26,5 @@
</p>
</div>
+
{% endblock main %}