2021-06-16 22:01:06 +02:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
2023-05-30 19:59:03 +02:00
|
|
|
<title>GNU Taler Wallet - WebExtension</title>
|
2021-06-16 22:01:06 +02:00
|
|
|
<meta charset="utf-8" />
|
2022-03-25 20:57:27 +01:00
|
|
|
<link rel="stylesheet" type="text/css" href="/dist/walletEntryPoint.css" />
|
2022-04-05 17:16:09 +02:00
|
|
|
<link rel="stylesheet" type="text/css" href="/static/font/import.css" />
|
2021-06-16 22:01:06 +02:00
|
|
|
<link rel="icon" href="/static/img/icon.png" />
|
|
|
|
<script src="/dist/walletEntryPoint.js"></script>
|
2021-11-16 17:59:53 +01:00
|
|
|
<style>
|
|
|
|
html {
|
|
|
|
font-family: sans-serif; /* 1 */
|
|
|
|
}
|
|
|
|
h1 {
|
|
|
|
font-size: 2em;
|
|
|
|
}
|
|
|
|
input {
|
|
|
|
font: inherit;
|
|
|
|
}
|
|
|
|
body {
|
|
|
|
margin: 0;
|
|
|
|
font-size: 100%;
|
|
|
|
padding: 0;
|
|
|
|
background-color: #f8faf7;
|
|
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
|
|
}
|
|
|
|
</style>
|
2021-06-16 22:01:06 +02:00
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
2021-06-21 15:07:56 +02:00
|
|
|
<div id="container" class="wallet-container"></div>
|
2021-06-16 22:01:06 +02:00
|
|
|
</body>
|
|
|
|
</html>
|