forked from oberwager/paper-turtle
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
99 lines (95 loc) · 3.09 KB
/
index.html
File metadata and controls
99 lines (95 loc) · 3.09 KB
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<!--Favicons-->
<link rel="shortcut icon" href="/images/favicons/favicon.ico">
<link rel="stylesheet" href="style.css"/>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.3/css/bootstrap.min.css" integrity="sha384-Zug+QiDoJOrZ5t4lssLdxGhVrurbmBWopoEl+M6BdEfwnCJZtKxi1KgxUyJq13dy" crossorigin="anonymous">
</head>
<body onload="js:genwallet(null)">
<div class="wallet">
<img src="keys.png"/>
<div class="amount-added-text">Seed</div>
<div class="note-text" id="mnemonic_widget">Seed</div>
<div class="date-text">Data</div>
<div class="instruction-text">
<ul>
<li>
To deposit funds to this Catalyst paper wallet: send CX to the <b>public</b> address
</li>
<li>
<b>DO NOT REVEAL THE PRIVATE KEY</b> until you are ready to import the balance of this wallet to the Catalyst CLI-CLIENT.
</li>
</ul>
</div>
<div id="spend_key_widget" class="spend_key_widget"></div>
<div id="address_widget" class="address_widget"></div>
<div id="qrcodeSecret" class="qr-secret"></div>
<div id="address_qr_widget" class="qr-address"></div>
<div id="view_key_widget" class="view_key_widget"></div>
<div id="qrcodeView" class="qr-view"></div>
<div class="logo-text">
<ul>
<div class="logo">
<img class="logo" src="logo.png"/>
</div>
<li>
<b>CATALYST</b>
</li>
</ul>
</div>
</div>
<div class="buttons">
<button type="button" onclick="js:genwallet(null)">Generate new</button>
<button type="button" onClick="window.print()">Print</button>
<center>
<button class="btn btn-default" onclick="js:show_restore();" type="button" value="restore keys from seed phrase">Restore keys from seed phrase</button>
</center>
<div id="restore" style="display: none;">
<input id="seed_phrase" type="text" style="width:33%;" value="" placeholder="Enter your seed phrase words here."/><br /><br />
<center>
<button class="btn btn-default" onclick="js:restore_keys(null);" type="button" value="Restore keys">Restore Keys</button>
</center>
</div>
</div>
<div class="instruction">
<img src="instructions.png"/>
<div class="folding-logo-text">
<ul>
<div class="folding-logo">
<img class="folding-logo" src="logo.png"/>
</div>
<li>
<b>CATALYST</b>
</li>
</ul>
</div>
<div class="folding2-logo-text">
<ul>
<div class="folding2-logo">
<img class="folding2-logo" src="logo.png"/>
</div>
<li>
<b>CATALYST</b>
</li>
</ul>
</div>
<div class="folding3-logo-text">
<ul>
<div class="folding3-logo">
<img class="folding3-logo" src="logo.png"/>
</div>
<li>
<b>CATALYST</b>
</li>
</ul>
</div>
</div>
</div>
</div>
<script src="wallet.js"></script>
<script src="crypto_utils.js"></script>
<script src="qrcode.js"></script>
</body>
</html>