forked from Disk1n/LibraBrowser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaccount.html.tmpl
229 lines (210 loc) · 6.45 KB
/
account.html.tmpl
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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-326971-2"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){{dataLayer.push(arguments);}}
gtag('js', new Date());
gtag('config', 'UA-326971-2');
</script>
<!-- end analytics -->
<!-- open graph / link previews -->
<meta property="og:title" content="Libra Testnet Explorer - Account Information" />
<meta property="og:type" content="text/html" />
<meta property="og:image" content="/assets/images/logos/transparent-logo.png" />
<meta property="og:image:width" content="445" />
<meta property="og:image:height" content="120" />
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Experimental Libra Testnet Explorer - Account View</title>
<meta name="description" content="Experimental Libra TestNet Explorer by @gal_diskin" />
<meta name="keywords" content="Libra, libracoin, libra coin, facebook coin, calibra" />
<meta name="author" content="Gal Diskin, Daniel Prinz, First Group"/>
<!-- Favicon -->
<link rel="icon" type="image/png" href="/assets/images/favicon.png" />
<!-- Bootstrap & Plugins CSS -->
<link href="/assets/css/bootstrap.min.css" rel="stylesheet" type="text/css">
<link href="/assets/css/font-awesome.min.css" rel="stylesheet" type="text/css">
<!-- Custom CSS -->
<link href="/assets/css/purple.css" rel="stylesheet" type="text/css">
</head>
<body>
<div class="loading-wrapper">
<div class="loading">
<div></div>
<div></div>
<div></div>
</div>
</div>
<!-- ***** Header Area Start ***** -->
<header class="header-area">
<div class="container">
<div class="row">
<div class="col-12">
<nav class="main-nav">
<!-- ***** Logo Start ***** -->
<a href="/" class="logo">
<img src="/assets/images/logos/transparent-logo.png" style="max-height: 40px;" class="light-logo" alt="Libra Testnet Block Explorer"/>
<img src="/assets/images/logos/white-logo.png" style="max-height: 40px;" class="dark-logo" alt="Libra Testnet Block Explorer"/>
</a>
<!-- ***** Logo End ***** -->
<!-- ***** Menu Start ***** -->
<ul class="nav">
<li><a href="/">HOME</a></li>
<li><a href="/faucet">FAUCET</a></li>
<li><a href="/stats">STATISTICS</a></li>
<li><a href="/version/{0}">LATEST BLOCK</a></li>
</ul>
<a class='menu-trigger'>
<span>Menu</span>
</a>
<!-- ***** Menu End ***** -->
</nav>
</div>
</div>
</div>
</header>
<!-- ***** Header Area End ***** -->
<!-- ***** Welcome Area Start ***** -->
<section class="block-explorer-wrapper bg-bottom-center" id="welcome-1">
<div class="block-explorer text">
<div class="container text-center">
<div class="row">
<div class="col-lg-12 align-self-center">
<h1>Libra Testnet Explorer</h1>
</div>
<div class="offset-lg-3 col-lg-6">
<p>Testnet Version / Up To Block {0}</p>
</div>
</div>
</div>
</div>
<div class="search">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="input-wrapper">
<div class="input">
<form action="/search">
<input type="text" placeholder="Account details / Transaction version" name="acct">
<button><i class="fa fa-search"></i></button>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- ***** Welcome Area End ***** -->
<section class="block-explorer-section section bg-bottom">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="center-heading">
<h2 class="section-title">Details for Account</h2>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-12 col-md-12 col-sm-12" align="center">
<div class="table-responsive">
<table class="table table-striped table-latests table-detail">
<tbody>
<tr>
<td><strong>Address</strong></td>
<td>{1}</td>
</tr>
<tr>
<td><strong>Balance</strong></td>
<td>{2} Libra</td>
</tr>
<tr>
<td><strong>Sequence Number</strong></td>
<td>{3}</td>
</tr>
<tr>
<td><strong>Sent Event Count</strong></td>
<td>{4}</td>
</tr>
<tr>
<td><strong>Received Event Count</strong></td>
<td>{5}</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-12">
<div class="center-heading">
<h2 class="section-title">Transactions</h2>
</div>
</div>
<div class="offset-lg-3 col-lg-6">
<div class="center-text">
<p>Latest transactions</p>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-12">
<div class="table-responsive">
<table class="table table-striped table-latests">
<thead>
<tr>
<th>Version<br>(TX ID)</th>
<th>Expiration<br>Date (UTC)</th>
<th>Type</th>
<th>From → To</th>
<th>Amount</th>
</tr>
</thead>
<tbody>
{6}
</tbody>
</table>
</div>
</div>
</div>
<div class="row m-bottom-70">
<div class="offset-lg-3 col-lg-6">
<div class="center-text">
<p><a href="{7}">Next Page</a></p>
</div>
</div>
</div>
</div>
</section>
<!-- ***** Contact & Footer Start ***** -->
<footer id="contact">
<div class="footer-bottom slim">
<div class="container">
<div class="row">
<div class="col-lg-12">
<p class="copyright">2019 © <a href="http://firstdag.com" style="color: white;">First - Digital Assets Group</a></p>
</div>
</div>
</div>
</div>
</footer>
<!-- ***** Contact & Footer End ***** -->
<!-- jQuery -->
<script src="/assets/js/jquery-2.1.0.min.js"></script>
<!-- Bootstrap -->
<script src="/assets/js/popper.js"></script>
<script src="/assets/js/bootstrap.min.js"></script>
<!-- Plugins -->
<script src="/assets/js/particles.min.js"></script>
<script src="/assets/js/scrollreveal.min.js"></script>
<script src="/assets/js/jquery.downCount.js"></script>
<script src="/assets/js/parallax.min.js"></script>
<!-- Global Init -->
<script src="/assets/js/particle-purple.js"></script>
<script src="/assets/js/custom.js"></script>
</body>
</html>