-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathindex.html
executable file
·121 lines (109 loc) · 4.92 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<!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://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css"
integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<title>Create Steem and Hive Account</title>
</head>
<body>
<div class="container pt-3">
<h1 class="text-center mb-5">Create Hive and Steem Account</h1>
<h3>Claim Discounted Account</h3>
<hr>
<form id="claim-account" method="POST">
<input type="hidden" id="claim-account-chain" name="claim-account-chain" value="hive">
<div id="claim-account-feedback" class="alert"></div>
<div class="row">
<div class="col-sm-6">
<div class="form-group">
<label for="username" class="sr-only">Username</label>
<input type="text" name="username" id="username" autocomplete="off" class="form-control"
placeholder="Username" required>
<div class="text-muted small mt-1"></div>
</div>
</div>
<div class="col-sm-6">
<div class="form-group">
<label for="active-key" class="sr-only">Active Key</label>
<input type="password" name="active-key" id="active-key" autocomplete="off" class="form-control"
placeholder="Active Key">
<p class="text-muted small mt-1">Leave this field blank to use Steem Keychain.</p>
</div>
</div>
</div>
<div class="row justify-content-center">
<div class="col-sm-6 mt-2">
<button class="btn btn-secondary btn-block" type="submit" id="claim-account-hive">
<img src="icons/hive.svg" alt="Hive" width="40" height="40"> Claim Account</button>
</div>
<div class="col-sm-6 mt-2">
<button class="btn btn-secondary btn-block" type="submit" id="claim-account-steem">
<img src="icons/steem.svg" alt="Steem" width="40" height="40"> Claim Account</button>
</div>
</div>
<p class="text-muted text-center mt-2">Please check <a
href="https://beempy.com/resource_costs">Beempy.com</a> to find out how much RC is required.</p>
</form>
<h3>Create Claimed Account</h3>
<hr>
<form id="create-account" method="POST">
<input type="hidden" id="create-account-chain" name="create-account-chain" value="hive">
<div id="create-account-feedback" class="alert"></div>
<div class="form-group">
<label for="new-account">Account Username</label>
<input type="text" name="new-account" id="new-account" autocomplete="off" class="form-control" required>
<div class="form-text small message">Enter the username you want to create.</div>
</div>
<div class="form-group">
<label for="password">Password</label>
<input type="text" name="password" id="password" autocomplete="off" class="form-control" required>
<p class="form-text small">Password of the new account. Please save it somewhere safe before you create
the
account.</p>
</div>
<div class="form-group">
<label for="creator">Creator Account</label>
<input type="text" name="creator" id="creator" autocomplete="off" class="form-control" required>
<p class="form-text small">Enter the account who will be paying the fee in claimed account credit.</p>
</div>
<div class="form-group">
<label for="delegation">Delegation</label>
<input type="text" name="delegation" id="delegation" autocomplete="off" class="form-control"
value="0.000">
<p class="form-text small">If you want to delegate some HP/SP to your newly created account, enter the
amount in
HP/SP.</p>
</div>
<div class="form-group">
<label for="creator-key">Active Key</label>
<input type="password" name="creator-key" id="creator-key" autocomplete="off" class="form-control">
<p class="form-text small">Enter creator account's PRIVATE ACTIVE KEY. Leave this field
blank to use Steem Keychain.</p>
</div>
<div class="row">
<div class="col-sm-6 mt-2">
<button class="btn btn-primary btn-block" id="create-account-hive">
<img src="icons/hive.svg" alt="Hive" width="40" height="40"> Create Account</button>
</div>
<div class="col-sm-6 mt-2">
<button class="btn btn-primary btn-block" id="create-account-steem">
<img src="icons/steem.svg" alt="Steem" width="40" height="40"> Create Account</button>
</div>
</div>
</form>
<hr>
<p class="text-center">
Brought to you by <a href="https://hive.blog/@reazuliqbal">@reazuliqbal</a>.<br>
Open source <a href="https://github.com/CodeBull/AccountCreate">on GitHub</a>.
</p>
</div>
<script src="https://code.jquery.com/jquery-3.4.1.slim.min.js"
integrity="sha384-J6qa4849blE2+poT4WnyKhv5vZF5SrPo0iEjwBvKU7imGFAV0wwj1yYfoRSJoZ+n"
crossorigin="anonymous"></script>
<script src="https://unpkg.com/dsteem@^0.10.1/dist/dsteem.js"></script>
<script src="https://unpkg.com/@hiveio/[email protected]/dist/dhive.js"></script>
<script src="js/app.js"></script>
</body>
</html>