diff options
Diffstat (limited to 'src/frontend/create-reserve-form.html')
-rw-r--r-- | src/frontend/create-reserve-form.html | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/frontend/create-reserve-form.html b/src/frontend/create-reserve-form.html new file mode 100644 index 00000000..229ae349 --- /dev/null +++ b/src/frontend/create-reserve-form.html | |||
@@ -0,0 +1,19 @@ | |||
1 | <form id="reserve-form" name="tform" action="never_used" onsubmit="return MERCHtrigSubmission()" method="POST"> | ||
2 | Which mint? Indicate mint's URL below :<br><input id="mint-url" type="text" name="pbk" value="demo.taler.net"></input><br> | ||
3 | Your Public Key Here :<br><input type="text" name="pbk"></input><br> | ||
4 | Amount :<br> | ||
5 | <select id="taler-amount" name="kudos-amount"> | ||
6 | <option value="1000">1000</option> | ||
7 | <option value="1">1</option> | ||
8 | <option value="5">5</option> | ||
9 | <option value="10">10</option> | ||
10 | </select><br><br> | ||
11 | Currency :<br> | ||
12 | <select id="taler-amount-currency" name="kudos-currency"> | ||
13 | <option value="EUR">Euro</option> | ||
14 | <option value="JPY">Yen</option> | ||
15 | <option value="LRD">Liberian Dollar</option> | ||
16 | </select><br><br> | ||
17 | |||
18 | <input type="submit" value="Submit"></input><br> | ||
19 | </form> | ||