summaryrefslogtreecommitdiff
path: root/talerdonations/donations/templates/fallback.html
blob: 448af2bfb973bd321dbcbd0ef2c4a69f9f513823 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{% extends "templates/base.html" %}
{% block main %}
<div id="ccfakeform" class="fade">
 <p>
 Oops, it looks like you don't have a Taler wallet installed.  Why don't you enter
 all your credit card details before reading the article? <em>You can also
 use GNU Taler to complete the purchase at any time.</em>
 </p>

 <form>
   First name<br> <input type="text"></input><br>
   Family name<br> <input type="text"></input><br>
   Age<br> <input type="text"></input><br>
   Nationality<br> <input type="text"></input><br>
   Gender<br> <input type="radio" name"gender">Male</input>
   CC number<br> <input type="text"></input><br>
   <input type="radio" name="gender">Female</input><br>
 </form>
 <form method="get" action="/cc-payment/{{ article_name }}">
   <input type="submit"></input>
 </form>
</div>
{% endblock main %}