summaryrefslogtreecommitdiff
path: root/talersurvey/survey/templates/index.html
blob: ffb871e650355b12aa6b4a1830710f56e56513c1 (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" %}

{% block main %}
  <div>
    <p>
      In this page, you can participate in our survey about payment systems
      and get a nice tip - via your Taler wallet - from this shop!
    </p>
  </div>
  <div>
    <form action="{{ url('/survey') }}" method="post">
      {% if success %}
        <strong>Congratulations, your reward has been successfully submitted!</strong>
        <br>
      {% endif %}
      What do you prefer?<br>
      <input type="radio" name="paypref" value="taler">
        <label>Taler</label>
      </input>
      <input type="radio" name="paypref" value="visa">
        <label>Visa</label>
      </input><br>
      <input type="submit" value="Submit"></input>
    </form>
  </div>
{% endblock %}