summaryrefslogtreecommitdiff
path: root/talermerchantdemos/donations/templates/checkout.html.j2
blob: 5251fdfe55535611cb844facb2c2b87cd15c67c6 (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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{% extends "templates/base.html.j2" %}

{% block main %}
<article>
  <h1>{{ gettext("Select your payment method") }}</h1>

  <p>
  {{
    gettext('This is an example for a "checkout" page of a Web shop. On the previous page, you have created the shopping cart and decided which product to buy (i.e. which project to donate KUDOS to).  Now in this page, you are asked to select a payment option.  As Taler is not yet universally used, we expect merchants will offer various payment options.')
    }}
  </p>
  <p>
  {{
    gettext('Note that you MUST select Taler here for the demo to continue, as the other payment options are just placeholders and not really working in the demonstration.  Also, it is of course possible to ask the user to make this choice already on the previous page (with the shopping cart), we just separated the two steps to keep each step as simple as possible.')
  }}
  </p>

  <form name="tform" action="{{ url_for('donate',lang=lang) }}" method="get">
    <div id="opt-form" align="left"><br>
      <input type="hidden" name="donation_receiver" value="{{ donation_receiver }}">
      <input type="hidden" name="donation_amount" value="{{ donation_amount }}">
      <input type="hidden" name="donation_donor" value="{{ donation_donor }}">

      <input type="radio" name="payment_system" value="lisa" id="radio-lisa">
      <label for="radio-lisa">Lisa</input>
      <br/>

      <input type="radio" name="payment_system" value="ycard" id="radio-ycard">
      <label for="radio-ycard">You Card</label>
      <br/>

      <input type="radio" name="payment_system" value="cardme" id="radio-cardme">
      <label for="radio-cardme">Card Me</label>
      <br/>

      <input type="radio" name="payment_system" value="taler" checked id="radio-taler">
      <label for=radio-taler">Taler</label>
      <br/>

      <input id="select-payment-method" type="submit" value="{{gettext("Confirm selection")}}"></input>
    </div>
  </form>

</article>

{% endblock main %}