summaryrefslogtreecommitdiff
path: root/talermerchantdemos/survey/templates/index.html
blob: e58e66921f86d290cd6297f2c9960a0938450a26 (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! <a href={{ url_for('survey_stats') }}>(survey stats)</a>
    </p>
  </div>
  <div>
    <form action="{{ url_for('submit_survey') }}" method="post" class="pure-form pure-form-stacked">
      <legend>What 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="Submit Survey" class="pure-button pure-button-primary" />
    </form>
  </div>
{% endblock %}