blob: 84943fbf18eb3cc965eccc2944204818c5349260 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
 | <!DOCTYPE html>
<html>
  <head>
    <meta charset="UTF-8" />
    <title>Taler Wallet: Select Taler Provider</title>
    <link rel="icon" href="/img/icon.png" />
    <link rel="stylesheet" type="text/css" href="/style/pure.css" />
    <link rel="stylesheet" type="text/css" href="/style/wallet.css" />
    <script src="/pageEntryPoint.js"></script>
    <style>
      body {
        font-size: 100%;
        overflow-y: scroll;
      }
    </style>
  </head>
  <body>
    <section id="main">
      <div id="container"></div>
    </section>
  </body>
</html>
 |