-
Notifications
You must be signed in to change notification settings - Fork 127
Expand file tree
/
Copy pathrecovery-phrase.html
More file actions
90 lines (84 loc) · 3.81 KB
/
recovery-phrase.html
File metadata and controls
90 lines (84 loc) · 3.81 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
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>What is a recovery phrase?</title>
<link href="../css/style.css" rel="stylesheet" type="text/css">
<!--Template Stylesheet-->
<link href="css/elements-style.css" rel="stylesheet" type="text/css">
<!--Template Elements Stylesheet-->
<link href="css/font-awesome.css" rel="stylesheet">
<!-- Font Awesome v5 -->
<link href="https://fonts.googleapis.com/css?family=Questrial" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Poppins" rel="stylesheet">
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.5.2/jquery.min.js"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/modernizr/2.8.2/modernizr.js"></script>
</head>
<style type="text/css">
h3 {
font-family: 'Poppins', sans-serif;
font-size: 16px;
font-weight: 900;
color: #ff784c; margin-top: 1em;
margin-bottom: 1em; }
</style>
<body>
<div class="se-pre-con"></div>
<!-- start Site Header -->
<header class="site-header">
<div class="wrapper">
<!-- start site logo-->
<div class="site-logo">
<a href="index.html"><img style="max-width: 30px;/* margin-right: 127px; */" src="../images/back.svg"></a>
<a href=""><img style=" margin-left: 80px; " src="../images/RVN@3x.png" alt="logo"> </a>
</div>
</div>
<!-- end wrapper -->
</header>
<!-- end site header -->
<!-- Site Content -->
<div class="content main-container" id="site-content">
<!-- start wrapper -->
<div class="wrapper">
<!-- start featured box -->
<div class="featured-box">
<div class="container">
<div class="row">
<div class="col">
<h3>What is a recovery phrase? </h3>
</div>
</div>
<p>A recovery phrase consists of 12 randomly generated words. The app creates the recovery phrase for you automatically when you start a new wallet.
The recovery phrase is critically important and should be written down and stored in a safe location. Never take screenshots of your recovery phrase as this can be stolen if someone gains access to your device or to backups of your photos.
In the event of phone theft, destruction, or loss, the recovery phrase can be used to recover your wallet onto a new phone. The key is also required when upgrading your current phone to a new one or to recover your PIN.<br />
To find your recovery phrase follow these steps:<br />
1- On the main screen, tap on Menu.<br />
2- Select Security Settings.<br />
3- Tap on Recovery Phrase.<br />
4- Tap on Write Down Recovery Phrase Again.<br />
5- Enter your PIN and you will be shown each word in your recovery phrase on separate pages.
</p>
</div>
</div>
</div>
<!-- start site footer -->
<footer class="site-footer">
<div class="wrapper">
<!-- start site footer bottom -->
<div class="site-footer-bottom">
<p>Please review our <br /> <a href="https://ravencoin.org/mobilewallet/support/terms.html">Terms of Use </a> - <a href="https://ravencoin.org/mobilewallet/support/privacy.html">Privacy Policy</a></p>
</div>
<!-- end site footer bottom-->
</div>
<!--wrapper-->
</footer>
</body>
<!-- end site footer -->
<script type="text/javascript"> $(window).load(function() {
// Animate loader off screen
$(".se-pre-con").fadeOut("slow");;
});
</script>
</html>