-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
40 lines (33 loc) · 1.05 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Samourai recover xprv</title>
<style>
body {
background-color: #888;
}
</style>
</head>
<body style="background-color: #888;">
<div>
<label for="xpub">Xpub:</label><br />
<input id="xpub" type="text" placeholder="xpub, ypub, zpub" size="150" /><br /><br />
</div>
<div>
<label for="wif">Private Key:</label><br />
<input id="wif" type="text" placeholder="private key in WIF format" size="150" /><br /><br />
</div>
<div>
<button id="go">Find xprv</button> <button id="clear">Clear</button>
</div>
<br /><br />
<div>Electrum</div>
<div id="electrum" style="padding: 10px;"></div><br /><br />
<div>Sparrow</div>
<div id="sparrow" style="padding: 10px;"></div><br /><br /><br /><br />
<div id="err" style="padding: 10px;"></div><br /><br />
<script src="./bundle.js"></script>
</body>
</html>