2016-03-01 14:47:56 +01:00
|
|
|
<!DOCTYPE html>
|
2016-03-01 14:05:38 +01:00
|
|
|
<html>
|
2016-02-29 18:19:20 +01:00
|
|
|
|
2016-03-01 14:47:56 +01:00
|
|
|
<head>
|
2017-04-20 03:09:25 +02:00
|
|
|
<meta charset="UTF-8">
|
2017-10-17 13:40:11 +02:00
|
|
|
<title>Taler Wallet: Confirm Contract</title>
|
2016-03-01 14:47:56 +01:00
|
|
|
|
2017-08-30 17:08:54 +02:00
|
|
|
<link rel="stylesheet" type="text/css" href="../style/pure.css">
|
2017-05-31 16:04:14 +02:00
|
|
|
<link rel="stylesheet" type="text/css" href="../style/wallet.css">
|
2016-03-01 14:47:56 +01:00
|
|
|
|
2016-11-13 23:30:18 +01:00
|
|
|
<link rel="icon" href="/img/icon.png">
|
2016-10-03 17:43:51 +02:00
|
|
|
|
2017-04-20 03:09:25 +02:00
|
|
|
<script src="/dist/page-common-bundle.js"></script>
|
2019-08-29 23:12:55 +02:00
|
|
|
<script src="/dist/pay-bundle.js"></script>
|
2016-03-01 14:47:56 +01:00
|
|
|
|
2016-04-23 19:34:30 +02:00
|
|
|
<style>
|
|
|
|
button.accept {
|
|
|
|
background-color: #5757D2;
|
|
|
|
border: 1px solid black;
|
|
|
|
border-radius: 5px;
|
|
|
|
margin: 1em 0;
|
|
|
|
padding: 0.5em;
|
|
|
|
font-weight: bold;
|
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
button.linky {
|
|
|
|
background:none!important;
|
|
|
|
border:none;
|
|
|
|
padding:0!important;
|
2015-12-18 22:36:26 +01:00
|
|
|
|
2016-04-23 19:34:30 +02:00
|
|
|
font-family:arial,sans-serif;
|
|
|
|
color:#069;
|
|
|
|
text-decoration:underline;
|
|
|
|
cursor:pointer;
|
|
|
|
}
|
2015-12-18 22:36:26 +01:00
|
|
|
|
2016-04-23 19:34:30 +02:00
|
|
|
input.url {
|
|
|
|
width: 25em;
|
|
|
|
}
|
2016-04-27 06:03:04 +02:00
|
|
|
|
|
|
|
|
|
|
|
button.accept:disabled {
|
|
|
|
background-color: #dedbe8;
|
|
|
|
border: 1px solid white;
|
|
|
|
border-radius: 5px;
|
|
|
|
margin: 1em 0;
|
|
|
|
padding: 0.5em;
|
|
|
|
font-weight: bold;
|
|
|
|
color: #2C2C2C;
|
|
|
|
}
|
|
|
|
|
|
|
|
.errorbox {
|
|
|
|
border: 1px solid;
|
|
|
|
display: inline-block;
|
|
|
|
margin: 1em;
|
|
|
|
padding: 1em;
|
|
|
|
font-weight: bold;
|
|
|
|
background: #FF8A8A;
|
|
|
|
}
|
2017-06-02 02:51:17 +02:00
|
|
|
|
|
|
|
.okaybox {
|
|
|
|
border: 1px solid;
|
|
|
|
display: inline-block;
|
|
|
|
margin: 1em;
|
|
|
|
padding: 1em;
|
|
|
|
font-weight: bold;
|
|
|
|
background: #00FA9A;
|
|
|
|
}
|
2016-04-23 19:34:30 +02:00
|
|
|
</style>
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
2016-03-01 14:47:56 +01:00
|
|
|
<section id="main">
|
2016-04-23 19:34:30 +02:00
|
|
|
<h1>GNU Taler Wallet</h1>
|
2019-09-05 16:23:54 +02:00
|
|
|
<article id="container" class="fade"></article>
|
2016-03-01 14:47:56 +01:00
|
|
|
</section>
|
|
|
|
</body>
|
2015-12-17 22:56:24 +01:00
|
|
|
|
2015-12-16 10:45:16 +01:00
|
|
|
</html>
|