wallet-core/pages/confirm-create-reserve.html

93 lines
1.7 KiB
HTML
Raw Normal View History

<!DOCTYPE html>
<html>
2016-02-09 21:56:06 +01:00
<head>
<title>Taler Wallet: Select Taler Provider</title>
2016-10-03 17:43:51 +02:00
<link rel="icon" href="../img/icon.png">
2016-02-09 21:56:06 +01:00
<script src="../lib/vendor/URI.js"></script>
2016-10-07 14:34:31 +02:00
<script src="../lib/vendor/preact.js"></script>
<!-- i18n -->
2016-02-22 23:15:24 +01:00
<script src="../lib/vendor/jed.js"></script>
<script src="../lib/i18n.js"></script>
2016-09-09 14:12:30 +02:00
<script src="../i18n/strings.js"></script>
2016-10-07 14:34:31 +02:00
<!-- module loading -->
<script src="../lib/vendor/system-csp-production.src.js"></script>
2016-02-09 21:56:06 +01:00
<script src="../lib/module-trampoline.js"></script>
2016-10-07 17:10:22 +02:00
2016-04-23 19:34:30 +02:00
<style>
#main {
border: solid 1px black;
border-radius: 10px;
margin: auto;
max-width: 50%;
padding: 2em;
}
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;
2016-02-09 21:56:06 +01:00
2016-04-23 19:34:30 +02:00
font-family:arial,sans-serif;
color:#069;
text-decoration:underline;
cursor:pointer;
}
2016-02-09 21:56:06 +01:00
2016-10-07 17:10:22 +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-23 19:34:30 +02:00
input.url {
width: 25em;
}
2016-04-27 06:03:04 +02:00
table {
border-collapse: collapse;
}
td {
border-left: 1px solid black;
border-right: 1px solid black;
text-align: center;
padding: 0.3em;
}
2016-04-27 06:50:38 +02:00
span.spacer {
padding-left: 0.5em;
padding-right: 0.5em;
}
2016-04-23 19:34:30 +02:00
</style>
</head>
<body>
<section id="main">
2016-04-23 19:34:30 +02:00
<h1>GNU Taler Wallet</h1>
2016-03-01 19:39:17 +01:00
<div class="fade" id="exchange-selection"></div>
</section>
</body>
2015-12-07 23:39:25 +01:00
</html>