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