summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMarcello Stanisci <marcello.stanisci@inria.fr>2015-07-17 16:43:48 +0200
committerMarcello Stanisci <marcello.stanisci@inria.fr>2015-07-17 16:43:48 +0200
commit41f21f0b60161fc0f06b5d746b678dc64e40f86a (patch)
tree62b559044dbcde0d14f3fc2f5b7cfda44c212a8e /src
parent2c8fa2d9be4926c8f9a327721e9f0ba5adb081de (diff)
downloadmerchant-41f21f0b60161fc0f06b5d746b678dc64e40f86a.tar.gz
merchant-41f21f0b60161fc0f06b5d746b678dc64e40f86a.tar.bz2
merchant-41f21f0b60161fc0f06b5d746b678dc64e40f86a.zip
adding host independent URIs
Diffstat (limited to 'src')
-rw-r--r--src/website/new/create-reserve-form.html8
-rw-r--r--src/website/new/merchant.js2
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 @@
<form id="reserve-form" name="tform" action="never_used" onsubmit="return MERCHtrigSubmission()" method="POST">
- Which mint? Indicate mint's URL below :<br><input id="mint-url" type="text" name="pbk">demo.taler.net</input><br>
+ Which mint? Indicate mint's URL below :<br><input id="mint-url" type="text" name="pbk" value="demo.taler.net"></input><br>
Your Public Key Here :<br><input type="text" name="pbk"></input><br>
Amount :<br>
<select id="taler-amount" name="kudos-amount">
@@ -9,9 +9,9 @@
</select><br><br>
Currency :<br>
<select id="taler-amount-currency" name="kudos-currency">
- <option value="1">Kudos</option>
- <option value="5">Euro</option>
- <option value="10">Yemen</option>
+ <option value="JPY">Yen</option>
+ <option value="EUR">Euro</option>
+ <option value="LRD">Liberian Dollar</option>
</select><br><br>
<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(){
};
- getform.open("GET", "file:///home/marcello/webstore/create-reserve-form.html", true);
+ getform.open("GET", "create-reserve-form.html", true);
getform.send();
}