forked from ericet/AccountCreation
-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
72 lines (65 loc) · 3.21 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
<!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.1.3/css/bootstrap.min.css"
integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
<title>BLURT Account Creation</title>
</head>
<body>
<div class="container pt-3">
<h1 class="text-center mb-5">Blurt Account Creation</h1>
<h3>Create Account</h3>
<form id="create-account" method="POST">
<div id="create-account-feedback" class="alert"></div>
<div class="form-group">
<label for="new-account" class="text-dark">BLURT Account Username</label>
<input type="text" name="new-account" id="new-account" autocomplete="off" class="form-control" style="text-transform: lowercase" required>
<p class="text-muted">Enter the BLURT username you want to create. 16 Characters Max.</p>
</div>
<div class="form-group">
<label for="password" class="text-dark">Password</label>
<input type="text" name="password" id="password" autocomplete="off" class="form-control" required>
<p class="text-muted">Password of the new account. Please save it somewhere safe before you create the
account.</p>
</div>
<div class="form-group">
<button id="download-password" class="btn btn-info">Download Password
Backup</button>
</div>
<div class="form-group">
<label for="creator" class="text-dark">Creator Account</label>
<input type="text" name="creator" id="creator" autocomplete="off" class="form-control" style="text-transform: lowercase" required>
<p id="fee-message" class="text-muted"></p>
</div>
<div class="form-group">
<label for="transfer" class="text-dark">Gift Blurt</label>
<input type="text" name="transfer" id="transfer" autocomplete="off" class="form-control"
value="0.000 BLURT">
<p class="text-muted">If you want to transfer some BLURT to your newly created account, enter the amount in
BLURT.</p>
</div>
<div class="form-group">
<label for="creator-key" class="text-dark">Active Key</label>
<input type="password" name="creator-key" id="creator-key" autocomplete="off" class="form-control">
<p class="text-muted">Enter creator account's PRIVATE ACTIVE KEY. <span class="small">Leave this field
blank to use Blurt Keychain/WhaleVault.</span></p>
</div>
<button class="btn btn-success btn-block" type="submit">Create Account</button>
</form>
<hr>
<p class="text-center">
Brought to you by <a href="https://blurt.world/@megadrive">@megadrive</a>.<br>
Open source <a href="https://github.com/thecryptodrive/AccountCreation">on GitHub</a>.
</p>
</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/dsteem@^0.10.1/dist/dsteem.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@blurtfoundation/blurtjs/dist/blurt.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/FileSaver.min.js"></script>
<script src="js/app.js"></script>
</body>
</html>