-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathzTokenHolderList.htm
executable file
·153 lines (122 loc) · 4.39 KB
/
zTokenHolderList.htm
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Token Holder List</title>
<script src="plugins/jquery-2.1.1.min.js"></script>
<!-- bootstrap for better look example, but not necessary -->
<link rel="stylesheet" href="plugins/bootstrap/css/bootstrap.css" type="text/css" media="screen, projection">
<!-- Step Form Wizard plugin -->
<link rel="stylesheet" href="step-form-wizard/css/step-form-wizard.css" type="text/css" media="screen, projection">
<script src="step-form-wizard/js/step-form-wizard.js"></script>
<!-- nicer scroll in steps -->
<link rel="stylesheet" href="plugins/mcustom-scrollbar/jquery.mCustomScrollbar.css">
<script src="plugins/mcustom-scrollbar/jquery.mCustomScrollbar.concat.min.js"></script>
<script>
var sfw;
$(document).ready(function () {
sfw = $("#wizard_example").stepFormWizard({});
})
$(window).load(function () {
/* only if you want use mcustom scrollbar */
$(".sf-wizard fieldset").mCustomScrollbar({
theme: "dark-3",
scrollButtons: {
enable: true
}
});
/* ***************************************/
/* this function call can help with broken layout after loaded images or fonts */
sfw.refresh();
});
</script>
<style>
pre {margin: 45px 0 60px;}
h2 {margin: 60px 0 30px 0;}
p {margin-bottom: 10px;}
</style>
</head>
<body>
<div class="container">
<div class="site-index">
<div class="body-content">
<nav class="navbar navbar-inverse" role="navigation">
<ul class="nav navbar-nav">
<li><a href="zCrowdsale.htm">Crowdsale</a></li>
<li><a href="zFreetokens.htm">Get free tokens</a></li>
<li><a href="zTokenHolderList.htm">token Holder List</a></li>
<li><a href="zSummary.htm">Participation summary</a></li>
</ul>
</nav>
<div class="row">
<div class="col-md-12">
<h2>Token Holder list Sample</h2>
<table class="table table-condensed table table-hover">
<thead>
<tr>
<th>Donnors (D) / referers(R)</th>
<th>Donation / People refered</th>
<th>Token Amounts</th>
<th>Total Token Left</th>
<th>Agreed to Terms</th>
<th>TransID verified</th>
<th>Summary verified</th>
<th>Refered By</th>
</tr>
</thead>
<tbody>
<tr>
<td>1ACET5UaFd4bLoso1SBK4WmDk6mZBfNqse (D)</td>
<td>50 btc</td>
<td>1,500,000</td>
<td>53,500,000</td>
<td>Yes</td>
<td>Yes</td>
<td>Yes</td>
<td>http://url.com/jordanho1SBK4WmDk6mZng</td>
</tr>
<tr>
<td>http://url.com/jordanho1SBK4WmDk6mZng (R)</td>
<td>10 people</td>
<td>50,000</td>
<td>53,400,000</td>
<td>Yes</td>
<td>Yes</td>
<td>Yes</td>
<td>Self</td>
</tr>
<tr>
<td>NXT-CUXB-ZEKL-CC9Z-AZB6J (D)</td>
<td>200,000 nxt</td>
<td>2,000</td>
<td>53,398,000</td>
<td>Yes</td>
<td>Yes</td>
<td>Yes</td>
<td>http://url.com/jordanho1SBK4WmDk6mZng</td>
</tr>
</tbody>
</table>
</div>
</div>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<footer class="footer">
<div class="container">
<p class="pull-left"> 2015</p>
</div>
</footer>
</div>
</div>
</div>
</body>
</html>