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

53 lines
1.2 KiB
HTML
Raw Normal View History

<!DOCTYPE html>
<html>
2016-02-09 21:56:06 +01:00
<head>
<meta charset="UTF-8">
2016-02-09 21:56:06 +01:00
<title>Taler Wallet: Select Taler Provider</title>
2016-11-13 23:30:18 +01:00
<link rel="icon" href="/img/icon.png">
<link rel="stylesheet" type="text/css" href="/src/style/wallet.css">
<link rel="stylesheet" type="text/css" href="/src/style/pure.css">
2016-10-03 17:43:51 +02:00
<script src="/dist/page-common-bundle.js"></script>
<script src="/dist/confirm-create-reserve-bundle.js"></script>
2016-02-09 21:56:06 +01:00
<style>
body {
font-size: 100%;
overflow-y: scroll;
}
.button-success {
background: rgb(28, 184, 65); /* this is a green */
color: white;
border-radius: 4px;
text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}
.button-secondary {
background: rgb(66, 184, 221); /* this is a light blue */
color: white;
border-radius: 4px;
text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}
a.opener {
color: black;
}
.opener-open::before {
content: "\25bc"
}
.opener-collapsed::before {
content: "\25b6 "
}
</style>
2016-04-23 19:34:30 +02:00
</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>