summaryrefslogtreecommitdiff
path: root/talermerchantdemos/donations/templates/index.html
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2020-10-11 16:15:15 +0200
committerChristian Grothoff <christian@grothoff.org>2020-10-11 16:15:15 +0200
commitaa06ddd3cf1de03922fc4e45e46ef3476a69e3f8 (patch)
treec1b72c6ac23d657b0ca0eddf7078813731333cef /talermerchantdemos/donations/templates/index.html
parent449f1d5765ffffcf2c708f4ccf6278e9c79081d0 (diff)
downloadtaler-merchant-demos-aa06ddd3cf1de03922fc4e45e46ef3476a69e3f8.tar.gz
taler-merchant-demos-aa06ddd3cf1de03922fc4e45e46ef3476a69e3f8.tar.bz2
taler-merchant-demos-aa06ddd3cf1de03922fc4e45e46ef3476a69e3f8.zip
add i18n and new menu structure to donations page
Diffstat (limited to 'talermerchantdemos/donations/templates/index.html')
-rw-r--r--talermerchantdemos/donations/templates/index.html42
1 files changed, 0 insertions, 42 deletions
diff --git a/talermerchantdemos/donations/templates/index.html b/talermerchantdemos/donations/templates/index.html
deleted file mode 100644
index cbb3c35..0000000
--- a/talermerchantdemos/donations/templates/index.html
+++ /dev/null
@@ -1,42 +0,0 @@
-{% extends "templates/base.html" %}
-
-{% block main %}
-<h1 lang="en">Welcome to the Taler Donation "Shop" Demo</h1>
-
-<p>This toy donations website shows the user experience for donations with Taler.
-You are paying with an imaginary currency ({{ merchant_currency }}).
-</p>
-
-<div>
- <p>Please select a project, the amount (*) of {{ merchant_currency }} you
- wish to donate, and enter the name that will appear on your receipt:</p>
-
- <form name="tform" action="checkout" method="GET" class="pure-form">
- <div class="participation" id="fake-shop">
- <select name="donation_receiver">
- <option value="GNUnet">GNUnet</option>
- <option value="Taler">GNU Taler</option>
- <option value="Tor">Tor</option>
- </select>
- <select id="taler-donation" name="donation_amount">
- <option value="{{ merchant_currency }}:0.1">0.1 {{ merchant_currency }}</option>
- <option value="{{ merchant_currency }}:1">1 {{ merchant_currency }}</option>
- <option value="{{ merchant_currency }}:6">5 {{ merchant_currency }}</option>
- <option value="{{ merchant_currency }}:10">10 {{ merchant_currency }}</option>
- </select>
- <input type="text" name="donation_donor" value="Anonymous Donor" />
- <input type="submit" class="pure-button pure-button-primary" value="Donate!" />
- </div>
- </form>
- <p>
- (*) To make it a bit more fun, the 5 {{ merchant_currency }} option is
- deliberately implemented with a fault: the merchant will try to make you
- donate 6 {{ merchant_currency }} instead of the 5 {{ merchant_currency }} you
- got to see. But do not worry, you will be given the opportunity to review
- the final offer from the merchant in a window secured by the Taler
- extension. That way, you can spot the error before committing to an
- incorrect contract.
- </p>
-</div>
-
-{% endblock %}