aboutsummaryrefslogtreecommitdiff
path: root/extension/pages/confirm-contract.html
blob: 8d68511dd09b1c4a930266d6fcaea6c47fec3911 (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
<!doctype html>

<html>
  <head>
    <title>Taler Wallet: Confirm Reserve Creation</title>
    <script src="../lib/URI.js"></script>
    <script src="../lib/handlebars-v4.0.5.js"></script>
    <script src="../lib/commonHelpers.js"></script>
    <script src="confirm-contract.js"></script>
    <link rel="stylesheet" type="text/css" href="../style/wallet.css"> 

    <script id="contract-template" type="text/x-handlebars-template">
      Hello, this is the wallet.  The merchant "{{merchant.name}}"
      wants to enter a contract over {{prettyAmount amount}}
      with you.

      <p />

      Your contract includes these products:
      <ul>
      {{#each products}}
        <li>{{description}}: {{prettyAmount price}}</li>
      {{/each}}
      </ul>

      <p />
    </script>


  </head>
  <body>
    <h1>Confirm Payment</h1>

    <div id="render-contract"></div>

    <button id="confirm-purchase">Confirm Purchase!</button>
    
  </body>
</html>