wallet-core/extension/pages/confirm-contract.html

58 lines
1.4 KiB
HTML
Raw Normal View History

2015-12-16 10:45:16 +01:00
<!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>
2015-12-16 17:52:25 +01:00
<script src="../lib/commonHelpers.js"></script>
2015-12-16 10:45:16 +01:00
<script src="confirm-contract.js"></script>
2015-12-18 22:36:26 +01:00
<link rel="stylesheet" type="text/css" href="../style/page.css">
<link rel="stylesheet" type="text/css" href="../style/wallet.css">
2015-12-16 10:45:16 +01:00
<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}}
2015-12-17 15:29:39 +01:00
<li>{{description}}: {{prettyAmount price}}</li>
2015-12-16 10:45:16 +01:00
{{/each}}
</ul>
<p />
</script>
2015-12-17 22:56:24 +01:00
<script id="error-template" type="text/x-handlebars-template">
Payment was not successful: {{error}}
</script>
2015-12-16 10:45:16 +01:00
</head>
2015-12-18 22:36:26 +01:00
2015-12-16 10:45:16 +01:00
<body>
2015-12-18 22:36:26 +01:00
<header>
<div id="logo"></div>
<h1>Payment Confirmation</h1>
</header>
<aside class="sidebar" id="left">
</aside>
<section id="main">
<article id="contract">
<div id="render-contract"></div>
<button id="confirm-pay">Confirm Payment</button>
</article>
2015-12-16 10:45:16 +01:00
2015-12-18 22:36:26 +01:00
<article id="status"></article>
2015-12-16 10:45:16 +01:00
2015-12-18 22:36:26 +01:00
</section>
2015-12-17 22:56:24 +01:00
2015-12-16 10:45:16 +01:00
</body>
</html>