summaryrefslogtreecommitdiff
path: root/talermerchantdemos/blog/templates/confirm_refund.html
diff options
context:
space:
mode:
Diffstat (limited to 'talermerchantdemos/blog/templates/confirm_refund.html')
-rw-r--r--talermerchantdemos/blog/templates/confirm_refund.html19
1 files changed, 19 insertions, 0 deletions
diff --git a/talermerchantdemos/blog/templates/confirm_refund.html b/talermerchantdemos/blog/templates/confirm_refund.html
new file mode 100644
index 0000000..10aaa74
--- /dev/null
+++ b/talermerchantdemos/blog/templates/confirm_refund.html
@@ -0,0 +1,19 @@
+{% extends "templates/base.html" %}
+{% block main %}
+ <h1>Refund Article?</h1>
+
+ <p>
+ Do you want to get a refund for the article <em>{{ article_name }}</em>? After you've requested a refund,
+ you won't be able to read the article anymore.
+ </p>
+
+ <p>
+ You will only be able to receive the refund on the same wallet that you've used to pay
+ for this article originally.
+ </p>
+
+ <form action="{{ url_for('refund', order_id=order_id) }}" method="POST">
+ <input type="text" name="article_name" value={{ article_name}} hidden>
+ <input type="submit" value="Request refund">
+ </form>
+{% endblock main %}