-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (34 loc) · 1.01 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Recover Wallet</title>
<script src="js/bundle.js"></script>
<script src="js/recover.js"></script>
</head>
<body>
<h1>Wallet Recovery</h1>
<div>
<p>Enter Encrypted Wallet:</p>
<textarea id="cipher" rows="10" cols="80"></textarea>
</div>
<br>
<div>
<p>Enter Password:</p>
<input type="password" id="password" placeholder="password">
</div>
<br>
<div>
<button type="button" name="button" onclick="recoverWallet()">Process</button>
</div>
<br>
<div>
<p id="output"></p>
</div>
<div>
<a href="https://github.com/brainblocks/recovery">Github</a>
<h3>Donate: nano_1jnatu97dka1h49zudxtpxxrho3j591jwu5bzsn7h1kzn3gwit4kejak756y</h3>
<img src="img/donate.png" alt="donate nano">
</div>
</body>
</html>