-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
85 lines (72 loc) · 2.07 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>37coins Oracle Wallet</title>
<link href="stylesheets/screen.css" media="screen, projection" rel="stylesheet" type="text/css" />
<script src="jquery-2.1.1.min.js"></script>
<script src="uuid.js"></script>
<script src="bitcore.js"></script>
<script src="qrcode.min.js"></script>
<script src="script.js"></script>
</head>
<body>
<div id="account-forms">
<h1>Existing Account</h1>
<form id="sign-in">
<label>Mnemonic sentence</label>
<textarea id="mnemonics" autofocus="on" required="true" cols="40" rows="5"></textarea>
<input type="submit" value="Sign in">
<div id="error" style="display: none;">
Error: account not found.
</div>
</form>
<form id="new-account">
<h1>New Account</h1>
<label>Phone number</label>
<input id="phone" type="tel" required="true">
<label>Spending limit without PIN (bits)</label>
<input id="limit" type="number" required="true" min="0">
<input type="submit" value="New account">
</form>
<div id="error-new"></div>
</div>
<div id="account" style="display: none;">
<h1>Confirmed Balance</h1>
<div id="confirmed-balance" class="balance"></div>
<div id="unconfirmed-balance-block">
<h1>Unconfirmed Balance</h1>
<div id="unconfirmed-balance" class="balance"></div>
</div>
<h1>Transactions</h1>
<table id="transactions">
<div id="no-transactions"><em>No transactions.</em></div>
<thead><tr>
<th>Time</th>
<th>Amount (bits)</th>
</tr></thead>
<tbody></tbody>
</table>
<h1>Bitcoin Address</h1>
<div id="receive-address"></div>
<div id="qr"></div>
<h1>Send Bitcoin</h1>
<form id="send">
<label>Amount</label>
<input id="amount" type="number" required="true" min="0">
<label>Address</label>
<input id="address" type="text" required="true" size="34">
<input type="submit" value="Send">
</form>
<h1>Account</h1>
<input id="refresh" type="button" value="Refresh">
<input id="sign-out" type="button" value="Sign out">
</div>
<div id="loader" style="display: none;">
<span></span>
<span></span>
<span></span>
</div>
</body>
</html>