diff options
author | Marcello Stanisci <marcello.stanisci@inria.fr> | 2015-07-17 16:43:48 +0200 |
---|---|---|
committer | Marcello Stanisci <marcello.stanisci@inria.fr> | 2015-07-17 16:43:48 +0200 |
commit | 41f21f0b60161fc0f06b5d746b678dc64e40f86a (patch) | |
tree | 62b559044dbcde0d14f3fc2f5b7cfda44c212a8e | |
parent | 2c8fa2d9be4926c8f9a327721e9f0ba5adb081de (diff) | |
download | merchant-41f21f0b60161fc0f06b5d746b678dc64e40f86a.tar.gz merchant-41f21f0b60161fc0f06b5d746b678dc64e40f86a.zip |
adding host independent URIs
-rw-r--r-- | src/website/new/create-reserve-form.html | 8 | ||||
-rw-r--r-- | src/website/new/merchant.js | 2 |
2 files changed, 5 insertions, 5 deletions
diff --git a/src/website/new/create-reserve-form.html b/src/website/new/create-reserve-form.html index 77191f3d..b9b448b8 100644 --- a/src/website/new/create-reserve-form.html +++ b/src/website/new/create-reserve-form.html | |||
@@ -1,5 +1,5 @@ | |||
1 | <form id="reserve-form" name="tform" action="never_used" onsubmit="return MERCHtrigSubmission()" method="POST"> | 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">demo.taler.net</input><br> | 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> | 3 | Your Public Key Here :<br><input type="text" name="pbk"></input><br> |
4 | Amount :<br> | 4 | Amount :<br> |
5 | <select id="taler-amount" name="kudos-amount"> | 5 | <select id="taler-amount" name="kudos-amount"> |
@@ -9,9 +9,9 @@ | |||
9 | </select><br><br> | 9 | </select><br><br> |
10 | Currency :<br> | 10 | Currency :<br> |
11 | <select id="taler-amount-currency" name="kudos-currency"> | 11 | <select id="taler-amount-currency" name="kudos-currency"> |
12 | <option value="1">Kudos</option> | 12 | <option value="JPY">Yen</option> |
13 | <option value="5">Euro</option> | 13 | <option value="EUR">Euro</option> |
14 | <option value="10">Yemen</option> | 14 | <option value="LRD">Liberian Dollar</option> |
15 | </select><br><br> | 15 | </select><br><br> |
16 | 16 | ||
17 | <input type="submit" value="Submit"></input><br> | 17 | <input type="submit" value="Submit"></input><br> |
diff --git a/src/website/new/merchant.js b/src/website/new/merchant.js index f1bd2a45..a65b5008 100644 --- a/src/website/new/merchant.js +++ b/src/website/new/merchant.js | |||
@@ -50,7 +50,7 @@ function MERCHfirstStep(){ | |||
50 | }; | 50 | }; |
51 | 51 | ||
52 | 52 | ||
53 | getform.open("GET", "file:///home/marcello/webstore/create-reserve-form.html", true); | 53 | getform.open("GET", "create-reserve-form.html", true); |
54 | getform.send(); | 54 | getform.send(); |
55 | 55 | ||
56 | } | 56 | } |