summaryrefslogtreecommitdiff
path: root/talerdonations/donations/templates/index.html
blob: 85d5fa685205067de096d85259a8e17549327a98 (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
29
30
31
32
33
34
35
36
37
38
{% extends "templates/base.html" %}

{% block main %}
<h1 lang="en">Wau Holland Welcomes your Donations via GNU Taler</h1>

<p>
  This website allows you to donate to the Wau Holland Foundation using GNU
  Taler.  This is a limited experiment, as Taler itself is still experimental.
  Legally speaking, we cannot warrant that your donations will arrive properly
  at this stage, and no receipts for donations will be issued. You have been
  warned.
</p>

<div>
  <p>Please select a project, and specify the amount you
    wish to donate. Optionally, you can specify a name
    under which the donation will be recorded:</p>

  <form name="tform" action="{{ url_for('donate') }}" method="GET" class="pure-form">
    <div class="participation" id="fake-shop">
      <select name="donation_receiver">
        <option value="antievoting">Anti e-voting campaign</option>
        <option value="anonymity">Anonymity networks</option>
        <option value="decentralization">Decentralized communication networks</option>
        <option value="foi">Freedom of Information</option>
        <option value="alphabit">Alpha-BIT-isation</option>
        <option value="selfdetermination">Informational Self-Determination</option>
        <option value="moralcourage">Moral courage</option>
        <option value="gnome">GNOME</option>
      </select>
      <input type="text" name="donation_amount" autofocus onfocus="this.value = '1 {{ merchant_currency }}'" />
      <input type="text" name="donation_donor" autofocus onfocus="this.value = 'Anonymous Donor'" />
      <input type="submit" class="pure-button pure-button-primary" value="Donate!" />
    </div>
  </form>
</div>

{% endblock %}