2016-03-01 14:47:56 +01:00
|
|
|
<!DOCTYPE html>
|
2016-03-01 14:05:38 +01:00
|
|
|
<html>
|
2016-03-01 14:47:56 +01:00
|
|
|
|
2016-02-09 21:56:06 +01:00
|
|
|
<head>
|
2017-04-20 03:09:25 +02:00
|
|
|
<meta charset="UTF-8">
|
2016-02-09 21:56:06 +01:00
|
|
|
<title>Taler Wallet: Select Taler Provider</title>
|
2016-03-01 14:47:56 +01:00
|
|
|
|
2016-11-13 23:30:18 +01:00
|
|
|
<link rel="icon" href="/img/icon.png">
|
2017-04-20 03:09:25 +02:00
|
|
|
<link rel="stylesheet" type="text/css" href="/src/style/wallet.css">
|
2017-04-28 23:28:27 +02:00
|
|
|
<link rel="stylesheet" type="text/css" href="/src/style/pure.css">
|
2016-10-03 17:43:51 +02:00
|
|
|
|
2017-04-20 03:09:25 +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
|
|
|
|
2017-04-28 23:28:27 +02: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>
|
2016-03-01 14:47:56 +01:00
|
|
|
<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>
|
2016-03-01 14:47:56 +01:00
|
|
|
</section>
|
2016-03-01 14:05:38 +01:00
|
|
|
</body>
|
2016-03-01 14:47:56 +01:00
|
|
|
|
2015-12-07 23:39:25 +01:00
|
|
|
</html>
|