forked from trufflesuite/ganache
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathforgot-password.html
67 lines (67 loc) · 3.01 KB
/
forgot-password.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
<!DOCTYPE html>
<html>
<head>
<title>Blockchain.com - Recover Wallet</title>
<meta name="robots" content="noindex">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0"/>
<base href="/legacy-pages/">
<link href="img/favicon.png" rel="icon"/>
<link href="css/overrides.min.css" nonce="**CSP_NONCE**" type="text/css" rel="stylesheet"/>
<link href="css/blockchain.css" nonce="**CSP_NONCE**" type="text/css" rel="stylesheet"/>
<script src="js/jquery.min.js" nonce="**CSP_NONCE**" type="text/javascript"></script>
<script src="js/bootstrap.min.js" nonce="**CSP_NONCE**" type="text/javascript"></script>
<script src="js/shared.js" nonce="**CSP_NONCE**" type="text/javascript"></script>
<script src='js/block-alert.js' nonce="**CSP_NONCE**" type="text/javascript"></script>
<script src="js/mnemonic/mnemonic.js" nonce="**CSP_NONCE**" type="text/javascript"></script>
<script src="js/mnemonic/wallet-forgot-password.js" nonce="**CSP_NONCE**" type="text/javascript"></script>
<script src="js/wallet-index.js" nonce="**CSP_NONCE**" type="text/javascript"></script>
<script nonce="**CSP_NONCE**">
window.NONCE = '**CSP_NONCE**'
</script>
</head>
<body class="opaque-nav" id="home-container">
<nav role="navigation">
<ul class="igation">
<li>
<a href="https://www.blockchain.com/">
<img src="img/logotype-com.svg" height="32px" width="216px" />
</a>
</li>
</ul>
</nav>
<div class="container pt-100">
<h3>Mnemonic Phrase<br/>
<small>
If you have a legacy wallet recovery mnemonic saved enter it below to view the password and login link. <br/>
NOTE: If you have a 12 word recovery phrase from our HD wallet, please go to the <a href="https://login.blockchain.com/#/recover">HD wallet recovery page</a>.</small>
</h3>
<br/>
<p>
<input type="text" style="width:100%" name="mnemonic" placeholder="Enter Mnemonic Here...">
</p>
<p id="mnemonic-result-error" class="well" style="display:none"></p>
<div id="mnemonic-result-container" style="display:none">
<div class="well">
<p class="guid-result-container"><b>Login Link:</b> <span class="guid-result"></span></p>
<p>
<b>Password:</b> <input type="text" class="password-result"/>
</p>
</div>
<div class="well">
<p>
<b>Password not working?</b><br/>
Your password may have been changed since the time the wallet was created,
as the mnemonic reveals the password that was set when the wallet was created.
Please try logging in with any other password you may have used.
</p>
<p>
<b>Locked out due to two factor authentication?</b><br/>
Please use the following link to reset two factor authentication: <a
href="https://login.blockchain.com/#/reset-2fa">Two Factor Authentication Reset</a>
</p>
</div>
</div>
</div>
</body>
</html>