summaryrefslogtreecommitdiff
path: root/talermerchantdemos/blog/templates/confirm_refund.html
blob: 10aaa747f15515e6a3b27bf5f408c36c5da288d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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 %}