summaryrefslogtreecommitdiff
path: root/talermerchantdemos/survey/templates/index.html.j2
blob: 3539bf89a7714f246f6d2dce3ca3bbbdd2ff155a (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
{% extends "templates/base.html.j2" %}
{% block main %}
  <div>
    <p>
    {{
    gettext("On this page, you can participate in our survey about payment systems and receive a tip in return.")
    }}
    </p>
  </div>
  <div>
    <form action="{{ "/" +  lang + "/submit-survey" }}" method="post" class="pure-form pure-form-stacked">
      <legend>{{ gettext("Which payment system do you prefer?") }}</legend>
      <fieldset>
      <label for="option-taler">
        <input id="option-taler" type="radio" name="paypref" value="taler" checked="checked" />
        Taler
      </label>
      <label for="option-visa">
        <input id="option-visa" type="radio" name="paypref" value="visa" />
        Visa
      </label>
      </fieldset>
      <input type="submit" value="{{ gettext("Submit Survey")}}" class="pure-button pure-button-primary" />
    </form>
  </div>
{% endblock %}