-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·39 lines (32 loc) · 1.15 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
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="https://cdn.datatables.net/1.10.16/css/jquery.dataTables.min.css">
<link rel="stylesheet" type="text/css" href="grid.monitor.css">
<script src="https://code.jquery.com/jquery-1.12.4.js"></script>
<script src="https://cdn.datatables.net/1.10.16/js/jquery.dataTables.min.js"></script>
</head>
<body>
<div class="body">
<div class="panel">
<div style="width:30%; max-width: 400px;">
<input id="urlinput" type="url" placeholder="http://">
</div>
<div style="margin-left: 10%;">
Used:
<div id="current-used">0</div>
/
<div id="total-used">0</div>
</div>
<div id="rr-panel" style="margin-top: 10px; float: right;">
Table refresh rate
<input id="rr-scroll" class="slider" type="range" name="range" min="0" step="1" value="0">
<span id="rr-val">OFF</span>
</div>
</div>
<table id="mytable" class=" hover" width="100%" cellspacing="0"></table>
</div>
<script src="grid.monitor.js"></script>
</body>
</html>