-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
76 lines (59 loc) · 2.08 KB
/
index.html
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<title>Tezos Paper Wallet Beta</title>
<!-- Bootstrap core CSS -->
<link href="bootstrap.min.css" rel="stylesheet" >
<link href="print.css" rel="stylesheet" media="print">
<link href="app.css" rel="stylesheet" media="print">
</head>
<nav>
<ul>
<li><A HREF = "index.html">Home</A></li>
<li><A HREF = "pages/PollOverview.html">Poll Overview</A></li>
<li><A HREF = "pages/PollCreation.html">Poll Creation</A></li>
<li><A HREF = "pages/Participation.html">Participation</A></li>
</ul>
</nav>
<body>
<div class="col-lg-8 mx-auto p-3 py-md-5">
<main>
<div class="hide-print">
<h1>Tezos Paper Wallet <span style="color: red;">Beta</span></h1>
<p class="fs-5 col-md-8">
Warning - this is project is in beta - use at your own risk. For promotional use only - do not reuse these wallets.
You can use <a href="https://wallet.kukai.app">Kukai</a> to retrieve
the funds. When importing be sure to select advanced and tell it
that these are legacy wallets. Thank you!
</p>
</div>
<p class="hide-print">
<a type="button" class="btn btn-success" href="#" onClick="MakeWallet()">
Create Wallets
</a>
<a type="button" class="btn btn-primary" href="#" onClick="window.print()">
Print
</a>
</p>
<div class="wallet-container" id="wallet-container"></div>
<br />
<div class="wallet-container" id="wallet-container2"></div>
<br />
<div class="wallet-container" id="wallet-container3"></div>
</main>
<footer class="pt-5 my-5 text-muted border-top">
Brought to life by Jarrod Woodard and
<a href="https://riedstra.dev/">
Mitchell Riedstra
</a>.
</footer>
</div>
<script src="bootstrap.bundle.min.js"></script>
<script src="tezos-utils.js"></script>
<script src="qrious.min.js"></script>
<script src="app.js"></script>
</body>
</html>