-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
175 lines (158 loc) · 6.96 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
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
<!doctype html>
<!--[if lt IE 7]>
<html class="no-js lt-ie9 lt-ie8 lt-ie7" lang=""> <![endif]-->
<!--[if IE 7]>
<html class="no-js lt-ie9 lt-ie8" lang=""> <![endif]-->
<!--[if IE 8]>
<html class="no-js lt-ie9" lang=""> <![endif]-->
<!--[if gt IE 8]><!-->
<html class="no-js" lang=""> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title></title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="apple-touch-icon" href="apple-touch-icon.png">
<link rel="stylesheet" href="css/bootstrap.min.css">
<style>
body {
padding-top: 50px;
padding-bottom: 20px;
}
</style>
<link rel="stylesheet" href="css/bootstrap-theme.min.css">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" type="text/css" href="js/vendor/DataTables/datatables.min.css"/>
<link rel="stylesheet" href="js/vendor/amstockchart/amcharts/style.css" type="text/css">
<script src="js/vendor/modernizr-2.8.3-respond-1.4.2.min.js"></script>
</head>
<body>
<!--[if lt IE 8]>
<p class="browserupgrade">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade
your browser</a> to improve your experience.</p>
<![endif]-->
<div id="accountSearchContainer" class="container page-center">
<!--Account input-->
<div id="accountRow" class="row">
<div class="col-lg-6" style="float: none; margin: 0 auto">
<div class="input-group">
<input id="accountInput" type="text" class="form-control" placeholder="Search for account">
<span class="input-group-btn">
<button class="btn btn-secondary" type="button" onclick="goToAccountPage()">Search</button>
</span>
</div>
</div>
</div>
</div>
<div id="dataContainer" class="container hidden">
<!-- Account base statistic-->
<div id="hashrateRow" class="row">
<h3>
<div class="col-md-3 text-center">
<div class="panel-primary">
<div class="panel-heading">
<div class="panel-title">
Current Calculated Hashrate
</div>
<div class="panel-body" data-bind="hashrate">
0.0 Mh/s
</div>
</div>
</div>
</div>
<div class="col-md-3 text-center">
<div class="panel-primary">
<div class="panel-heading">
<div class="panel-title">Average Hashrate for last 6 hours</div>
<div class="panel-body" data-bind="average_hashrate">
0.0 Mh/s
</div>
</div>
</div>
</div>
<div class="col-md-3 text-center">
<div class="panel-primary">
<div class="panel-heading">
<div class="panel-title">Last Reported Hashrate</div>
<div class="panel-body" data-bind="last_reported_hashrate">
0.0 Mh/s
</div>
</div>
</div>
</div>
<div class="col-md-3 text-center">
<div class="panel-primary">
<div class="panel-heading">
<div class="panel-title">Current balance</div>
<div class="panel-body" data-bind="current_balance">
0.0 ETH
</div>
</div>
</div>
</div>
</h3>
</div>
<div class="row"> </div>
<div id="chartRow" class="row hidden">
<div class="col-md-12">
<div id="chartDiv"> </div>
</div>
</div>
<div class="row"> </div>
<div id="tabsRow" class="row">
<div class="col-md-12">
<div class="row"> </div>
<div class="row">
<ul class="nav nav-tabs">
<li class="active"><a data-toggle="tab" href="#workersTab">Workers</a></li>
<li><a data-toggle="tab" href="#calculatorTab">Calculator</a></li>
</ul>
<div class="tab-content" style="overflow-x: auto">
<div class="row"> </div>
<div id="workersTab" class="tab-pane fade in active">
<table id="workersTable" class="table" cellspacing="0" width="100%">
<thead>
<tr>
<th data-dynatable-column="id" data-priority="1">Worker</th>
<th data-dynatable-column="lastShare" data-priority="2">Last Share</th>
<th data-dynatable-column="rating" data-priority="3">Rating</th>
<th data-dynatable-column="hashrate" data-priority="4">Hashrate</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
<div id="calculatorTab" class="tab-pane fade">
<table id="calculatorTable" class="table" width="100%">
<thead>
<tr>
<th data-dynatable-column="period">Period</th>
<th data-dynatable-column="coins">ETH</th>
<th data-dynatable-column="bitcoins">BTC</th>
<th data-dynatable-column="dollars">USD</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
</div> <!-- /container -->
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="js/vendor/jquery-1.11.2.min.js"><\/script>')</script>
<script src="js/vendor/bootstrap.min.js"></script>
<script type="text/javascript" src="js/vendor/DataTables/datatables.min.js"></script>
<script src="js/vendor/amstockchart/amcharts/amcharts.js" type="text/javascript"></script>
<script src="js/vendor/amstockchart/amcharts/serial.js" type="text/javascript"></script>
<script src="js/vendor/amstockchart/amcharts/amstock.js" type="text/javascript"></script>
<script src="js/vendor/amstockchart/amcharts/plugins/dataloader/dataloader.min.js" type="text/javascript"></script>
<script src="js/plugins.js"></script>
<script src="js/main.js"></script>
<script src="js/dynamicChart.js"></script>
</body>
</html>