-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaccounts.html
81 lines (79 loc) · 2.23 KB
/
accounts.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
<!DOCTYPE html>
<html lang="en"></html>
<head>
<meta charset="UTF-8" />
<link rel="icon" href="favicon/favicon.ico" type="image/x-icon" />
<link rel="stylesheet" type="text/css" href="app/css/style.css" />
<script type="text/javascript" src="app/js/main.js"></script>
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.8.1/css/all.css"
integrity="sha384-50oBUHEmvpQ+1lW4y57PTFmhCaXp0ML5d60M1M7uH2+nqUivzIebhndOJK28anvf"
crossorigin="anonymous"
/>
<title>
MONET: Accounts
</title>
</head>
<body>
<script>
get_account(0x629007eb99ff5c3539ada8a5800847eacfc25727);
</script>
<div id="banner">
<img
src="app/images/tenom-logo.png"
alt="tenom-logo"
style="width:50px;height:50px;padding-left: 50px;padding-top: 5px;"
/>
<ul>
<li>
<button onclick="window.location.href = 'index.html';">
<i class="fas fa-project-diagram"></i> Network
</button>
</li>
<li>
<button onclick="window.location.href = 'blocks.html';">
<i class="fas fa-cubes"></i> Blocks
</button>
</li>
<li>
<button
onclick="window.location.href = 'accounts.html';"
class="active"
>
<i class="fas fa-user"></i> Accounts
</button>
</li>
<li>
<button onclick="window.location.href = 'transactions.html';">
<i class="fas fa-credit-card"></i> Transactions
</button>
</li>
<li>
<button onclick="window.location.href = 'settings.html';">
<i class="fas fa-cog"></i> Settings
</button>
</li>
</ul>
</div>
<div id="account-div">
<div style="text-align:center;">
<input
autocomplete="off"
autocorrect="off"
autocapitalize="off"
spellcheck="false"
id="address-input"
type="text"
name="address"
placeholder="0x629007eb99ff5c3539ada8a5800847eacfc25727"
/>
<div style="text-align: right">
<button id="account-search-button" onclick="get_account_button()">
<i class="fas fa-search"></i> Get account
</button>
</div>
</div>
<table style="width:50%" id="account-table"></table>
</div>
</body>