aboutsummaryrefslogtreecommitdiff
path: root/extension/popup/reserve-create.html
blob: 165496ab6e35b054ce79b23db42c6cf8bcfc3e16 (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
<!DOCTYPE html>

<html>
  <head>
    <meta charset="utf-8">
    <link rel="stylesheet" href="popup.css" type="text/css">
  </head>

  <body>
    <div id="header" class="nav">
      <a href="balance-overview.html">Wallet</a>
      <a href="history.html">Transactions</a>
      <a href="reserves.html" class="active">Reserves</a>
    </div>

    <div id="content">
      <form id="reserve-create" action="reserve-create-sepa.html">
        <table>
          <tr>
            <td class="label"><label for="mint">Mint URL:</label></td>
            <td class="input"><input name="mint" type="text" /></td>
          </tr>
          <tr>
            <td class="label"><label for="amount">Amount:</label></td>
            <td class="input"><input name="amount" type="text" /></td>
          </tr>
          <tr>
            <td class="label"></td>
            <td class="input"><input type="submit" value="Create reserve " /></td>
          </tr>
        </table>
      </form>
    </div>

    <div id="footer" class="nav">
      <a href="reserves.html">List reserves</a>
      <a href="reserve-create.html" class="active">Create reserve</a>
    </div>

  </body>
</html>