blob: d89fd0b134c06489d9308aad4dcfe788305ab243 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<!doctype html>
<html>
<head>
<title>Taler Wallet: Confirm Reserve Creation</title>
<script src="../lib/URI.js"></script>
<script src="confirm-create-reserve.js"></script>
<link rel="stylesheet" type="text/css" href="../style/wallet.css">
</head>
<body>
<h1>Confirm Reserve Creation</h1>
Hello, this is the wallet. A bank wants to create a reserve for <span id=show-amount>(loading...)</span>.
Please specify the base URL of the mint you want to use.
<p />
<div class='formish'>
<div class='form-row'>
<label for='mint-url'>Mint URL</label>
<input class='url' id='mint-url' type="text" value="http://mint.demo.taler.net/"></input>
</div>
<button id='confirm'>Confirm Reserve</button>
</div>
</body>
</html>
|