forked from vsergeev/0xtrades.info
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
89 lines (84 loc) · 3.71 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/fontello-embedded.css" rel="stylesheet">
<link href="css/animation.css" rel="stylesheet">
<link href="css/app.css" rel="stylesheet">
<title>0x Trade Viewer</title>
</head>
<body>
<div class="container">
<div class="row">
<h1>0x Trade Viewer</h1>
<div class="dropdown-right">
<button class="btn btn-default btn-sm dropdown-toggle" type="button" id="currency-dropdown" data-toggle="dropdown" aria-haspopup="true">
<span id="currency-dropdown-text"></span>
<span class="caret"></span>
</button>
<ul id="currency-dropdown-list" class="dropdown-menu" aria-labelledby="currency-dropdown"></ul>
</div>
</div>
<div class="row">
<p class="description">A real-time trade viewer for the <a href="https://0xproject.com/" target="_blank">0x protocol</a>. Customize the panels below to create a personalized dashboard.</p>
</div>
<div class="row">
<p class="description">This viewer works best with a browser wallet, like <a href="https://metamask.io/" target="_blank">MetaMask</a>, <a href="https://parity.io/parity.html" target="_blank">Parity</a>, or <a href="https://github.com/ethereum/mist" target="_blank">Mist</a>.</p>
</div>
<div id="end-of-container"></div>
<div class="row">
<div class="text-center add-panel-row-buttons">
<button id="add-panel-row-button" type="button" class="btn btn-sm btn-info">Add Row</button>
<button id="add-split-panel-row-button" type="button" class="btn btn-sm btn-info">Add Split Row</button>
</div>
</div>
</div>
<footer class="footer">
<div class="container text-center">
<span class="text-muted">© Vanya A. Sergeev, 2017 — <a href="https://sergeev.io/">projects</a>, <a href="https://github.com/vsergeev">github</a></a>
</div>
<div class="container text-center">
<span class="text-muted">Tips: 0x35045f209E2aad1541D8b68E15F1fB2BC2E631be</span>
</div>
</footer>
<div id="result-modal" class="modal fade">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title"></h5>
</div>
<div class="modal-body"></div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary btn-sm" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<div id="status-bar">
<div class="container">
<table>
<tr>
<td id="status-bar-network"><i class="icon-signal"></i> </td>
<td id="status-bar-zrx-price">ZRX: <b id="status-bar-zrx-price-text">Fetching <i class="icon-spin2 animate-spin" style="font-size: 0.9rem"></i></b></td>
<td id="status-bar-github"><i class="icon-github-circled"></i> <b><a href="https://github.com/vsergeev/0xtrades.info" target="_blank">GitHub<i class="icon-link-ext"></i></a></b></td>
</tr>
</table>
</div>
</div>
<div id="loading-modal" class="modal fade" tabindex="-1" data-backdrop="static" data-keyboard="false" role="dialog" aria-hidden="true">
<div class="modal-dialog modal-m modal-dialog-centered">
<div class="modal-content">
<div class="modal-header"><h3>Fetching trades...</h3></div>
<div class="modal-body">
<div class="progress">
<div class="progress-bar progress-bar-striped progress-bar-animated">0</div>
</div>
</div>
</div>
</div>
</div>
<script src="js/bundle.js"></script>
</body>
</html>