-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathindex.html
executable file
·83 lines (76 loc) · 2.46 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
integrity="sha384-xOolHFLEh07PJGoPkLv1IbcEPTNtaed2xpHsD9ESMhqIYd0nLMwNLD69Npy4HI+N"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="css/app.css" />
<title>Hive Account Recovery</title>
</head>
<body>
<div class="container pt-3">
<h1 class="text-center mb-5">Hive Account Recovery</h1>
<hr />
<div class="row">
<div class="col-md-4 text-center mb-5">
<a href="recover-account.html" class="box bg-primary">
Recover Account
</a>
<p>If you need to recover access to a lost account click this box.</p>
</div>
<div class="col-md-4 text-center mb-5">
<a href="request-recovery.html" class="box bg-success">
Request Recovery
</a>
<p>
If you are trusty or recovery account of any other Hive account,
this is for you.
</p>
</div>
<div class="col-md-4 text-center mb-5">
<a href="change-recovery.html" class="box bg-danger">
Change Recovery Account
</a>
<p>
If you want to change your account's recovery account checkout this
page.
</p>
</div>
</div>
<div class="row justify-content-center">
<div class="col-md-4 text-center mb-5">
<a href="change-keys.html" class="box bg-info"> Change Keys </a>
<p>If you want to change your private keys, this is for you.</p>
</div>
</div>
<hr />
<div class="text-center">
<p>
Brought to you by
<a href="https://hive.blog/@reazuliqbal">@reazuliqbal</a>
</p>
<a
href="javascript:void(0);"
class="small text-info"
onclick="voteHiveWitness()"
>Vote Witness</a
>
</div>
</div>
<script
src="https://code.jquery.com/jquery-3.3.1.slim.min.js"
integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo"
crossorigin="anonymous"
></script>
<script src="https://unpkg.com/@hiveio/[email protected]/dist/dhive.js"></script>
<script src="js/app.js"></script>
</body>
</html>