summaryrefslogtreecommitdiff
path: root/talersurvey/survey/templates/index.html
blob: 35a66057a0f05711914851a065237a35af8b5858 (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
{% 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('/submit-survey') }}" method="post">
      What do you prefer?<br>
      <label>
        <input type="radio" name="paypref" value="taler" checked="checked" />
        Taler
      </label>
      <label>
        <input type="radio" name="paypref" value="visa" />
        Visa
      </label>
      <br>
      <input type="submit" value="Submit" />
    </form>
  </div>
{% endblock %}