aboutsummaryrefslogtreecommitdiff
path: root/extension/pages/confirm-contract.html
diff options
context:
space:
mode:
Diffstat (limited to 'extension/pages/confirm-contract.html')
-rw-r--r--extension/pages/confirm-contract.html38
1 files changed, 38 insertions, 0 deletions
diff --git a/extension/pages/confirm-contract.html b/extension/pages/confirm-contract.html
new file mode 100644
index 000000000..af6d9bca0
--- /dev/null
+++ b/extension/pages/confirm-contract.html
@@ -0,0 +1,38 @@
+<!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="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}}<a href="foo">(more...)</a></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>