blob: 5464f637c7953f8faad9458a4b85fff524a3684c (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
 | <!doctype html>
<html>
  <head>
    <title>Taler Wallet: Confirm Reserve Creation</title>
    <script src="../lib/URI.js"></script>
    <script src="../lib/polyfill-react.js"></script>
    <script src="confirm-create-reserve.js"></script>
    <link rel="stylesheet" type="text/css" href="../style/wallet.css">
  </head>
  <body>
    <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>
  </body>
</html>
 |