wallet-core/webextension/static/pay.html

76 lines
1.6 KiB
HTML
Raw Normal View History

<!DOCTYPE html>
<html>
2020-03-30 12:39:32 +02:00
<head>
<meta charset="UTF-8" />
<title>Taler Wallet: Confirm Contract</title>
2016-02-29 18:19:20 +01:00
2020-03-30 12:39:32 +02:00
<link rel="stylesheet" type="text/css" href="../style/pure.css" />
<link rel="stylesheet" type="text/css" href="../style/wallet.css" />
2020-03-30 12:39:32 +02:00
<link rel="icon" href="/img/icon.png" />
<script src="/dist/webextension/pageEntryPoint.js"></script>
2016-10-03 17:43:51 +02:00
2020-03-30 12:39:32 +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;
2020-03-30 12:39:32 +02:00
font-family: arial, sans-serif;
color: #069;
text-decoration: underline;
cursor: pointer;
}
2015-12-18 22:36:26 +01:00
2020-03-30 12:39:32 +02:00
input.url {
width: 25em;
}
2015-12-18 22:36:26 +01:00
2020-03-30 12:39:32 +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;
}
2016-04-27 06:03:04 +02:00
2020-03-30 12:39:32 +02:00
.errorbox {
border: 1px solid;
display: inline-block;
margin: 1em;
padding: 1em;
font-weight: bold;
background: #ff8a8a;
}
2016-04-27 06:03:04 +02:00
2020-03-30 12:39:32 +02:00
.okaybox {
border: 1px solid;
display: inline-block;
margin: 1em;
padding: 1em;
font-weight: bold;
background: #00fa9a;
}
</style>
</head>
2015-12-17 22:56:24 +01:00
2020-03-30 12:39:32 +02:00
<body>
<section id="main">
<h1>GNU Taler Wallet</h1>
<article id="container" class="fade"></article>
</section>
</body>
2015-12-16 10:45:16 +01:00
</html>