wallet-core/extension/pages/confirm-create-reserve.html

44 lines
1.1 KiB
HTML
Raw Normal View History

2015-12-07 23:39:25 +01:00
<!doctype html>
<html>
<head>
<title>Taler Wallet: Confirm Reserve Creation</title>
<script src="../lib/URI.js"></script>
2015-12-20 20:05:06 +01:00
<script src="../lib/polyfill-react.js"></script>
2015-12-07 23:39:25 +01:00
<script src="confirm-create-reserve.js"></script>
2015-12-18 22:36:26 +01:00
<link rel="stylesheet" type="text/css" href="../style/wallet.css">
2015-12-07 23:39:25 +01:00
</head>
2015-12-18 22:36:26 +01:00
2015-12-07 23:39:25 +01:00
<body>
2015-12-18 22:36:26 +01:00
<header>
<div id="logo"></div>
<h1>Confirm Reserve Creation</h1>
</header>
<aside class="sidebar" id="left">
</aside>
<section id="main">
<article>
<p>
A bank wants to create a reserve for <span id="show-amount">(loading...)</span>.
</p>
<p>
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>
</article>
</section>
2015-12-07 23:39:25 +01:00
</body>
</html>