summaryrefslogtreecommitdiff
path: root/talermerchantdemos/templates/survey-index.html.j2
blob: 4a804fbb74e7e8fccad560a2fbf33c99fc2cab7a (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
{% extends "survey-base.html.j2" %}
{% block main %}
  <div>
    <p>
    {{
    gettext("Please participate in our survey about payment systems and receive a tip in return.")
    }}
    </p>
  </div>
  <div>
    <form action="{{ script_name + "/" + getlang() + "/submit-survey" }}" method="post" class="pure-form pure-form-stacked">
      <fieldset>
      <legend>{{ gettext("Which payment system do you prefer?") }}</legend>
      <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>
      <button name="submit" class="pure-button pure-button-primary" >
        {{ gettext("Submit Survey")}}
      </button>
    </form>
  </div>
{% endblock %}