summaryrefslogtreecommitdiff
path: root/talerdonations/donations/templates/checkout.html
diff options
context:
space:
mode:
authorMarcello Stanisci <stanisci.m@gmail.com>2017-11-24 20:23:06 +0100
committerMarcello Stanisci <stanisci.m@gmail.com>2017-11-24 20:23:06 +0100
commit3e5536174253a11bb214d766d7377347265fcf6a (patch)
treee86905326dc242437ecf72603b2bfb23f9cb7373 /talerdonations/donations/templates/checkout.html
parent672ac93130ae7548accebfc13754285f15dfec17 (diff)
downloaddonations-3e5536174253a11bb214d766d7377347265fcf6a.tar.gz
donations-3e5536174253a11bb214d766d7377347265fcf6a.tar.bz2
donations-3e5536174253a11bb214d766d7377347265fcf6a.zip
missing templates
Diffstat (limited to 'talerdonations/donations/templates/checkout.html')
-rw-r--r--talerdonations/donations/templates/checkout.html56
1 files changed, 56 insertions, 0 deletions
diff --git a/talerdonations/donations/templates/checkout.html b/talerdonations/donations/templates/checkout.html
new file mode 100644
index 0000000..a7d009c
--- /dev/null
+++ b/talerdonations/donations/templates/checkout.html
@@ -0,0 +1,56 @@
+{% extends "templates/base.html" %}
+
+{% block main %}
+<article>
+ <h1>Select your payment method</h1>
+
+ <p>
+ This is an example for a "checkout" page of a Web shop.
+ On the previous page, you have created the shopping cart
+ and decided which product to buy (i.e. which project to
+ donate KUDOS to). Now in this page, you are asked to
+ select a payment option. As Taler is not yet universally
+ used, we expect merchants will offer various payment options.
+ </p>
+ <p>
+ The page also demonstrates how to only enable (or show) the Taler
+ option if Taler is actually supported by the browser. For example,
+ if you disable the Taler extension now, the Taler payment option
+ will be disabled in the page. Naturally, you could also trivially
+ hide the Taler option entirely by changing the visibility instead.
+ </p>
+ <p>
+ Note that you MUST select Taler here for the demo to continue,
+ as the other payment options are just placeholders and not
+ really working in the demonstration. Also, it is of course
+ possible to ask the user to make this choice already on the
+ previous page (with the shopping cart), we just separated the
+ two steps to keep each step as simple as possible.
+ </p>
+
+ <p {% if not display_alert %} style="display: none;" {% endif %} class="informational-fail">
+ Only Taler system available in this demo!
+ </p>
+
+ <form name="tform" action="{{ url('/donate') }}" method="get">
+ <div id="opt-form" align="left"><br>
+ <input type="hidden" name="donation_receiver" value="{{ donation_receiver }}"></input>
+ <input type="hidden" name="donation_amount" value="{{ donation_amount }}"></input>
+ <input type="radio" name="payment_system" value="lisa"
+ id="lisa-radio-button-id">Lisa</input>
+ <br/>
+ <input type="radio" name="payment_system" value="ycard">You Card</input>
+ <br/>
+ <input type="radio" name="payment_system" value="cardme">Card Me</input>
+ <br/>
+ <input type="radio" name="payment_system" value="taler"
+ checked
+ id="taler-radio-button-id" class="taler-installed-enable">Taler</input>
+ <br/>
+ <input id="select-payment-method" type="submit" value="Ok"></input>
+ </div>
+ </form>
+
+</article>
+
+{% endblock main %}