aboutsummaryrefslogtreecommitdiff
path: root/extension/pages/confirm-contract.html
blob: 2a2166888fee09ebec08def9d9955c13add8a3c8 (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
44
45
<!doctype html>

<html>
  <head>
    <title>Taler Wallet: Confirm Reserve Creation</title>
    <script src="../lib/vendor/URI.js"></script>
    <script src="../lib/vendor/mithril.js"></script>
    <script src="../lib/i18n.js"></script>
    <script src="../lib/vendor/lodash.core.min.js"></script>
    <script src="../lib/vendor/system-csp-production.src.js"></script>
    <script src="../lib/module-trampoline.js"></script>
    <link rel="stylesheet" type="text/css" href="../style/wallet.css">

    <script id="contract-template" type="text/x-handlebars-template">

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

      <p />
    </script>

    <script id="error-template" type="text/x-handlebars-template">
      Payment was not successful: {{error}}
    </script>
  </head>

  <body>
    <header>
      <div id="logo"></div>
      <h1>Payment Confirmation</h1>
    </header>

    <aside class="sidebar" id="left">
    </aside>

    <section id="main">
      <article id="contract"></article>
    </section>

  </body>
</html>