merchant

Merchant backend to process payments, run by merchants
Log | Files | Refs | Submodules | README | LICENSE

commit 41f21f0b60161fc0f06b5d746b678dc64e40f86a
parent 2c8fa2d9be4926c8f9a327721e9f0ba5adb081de
Author: Marcello Stanisci <marcello.stanisci@inria.fr>
Date:   Fri, 17 Jul 2015 16:43:48 +0200

adding host independent URIs

Diffstat:
Msrc/website/new/create-reserve-form.html | 8++++----
Msrc/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 @@ -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 @@ -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(); }