-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
72 lines (68 loc) · 2.65 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
<!DOCTYPE html>
<html lang="ja">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>DashBoard</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.8.0/Chart.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.8.0/Chart.css" />
<script src="https://code.jquery.com/jquery-3.4.0.min.js"></script>
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css">
<link href="css/style.css" type="text/css" rel="stylesheet" media="screen,projection"/>
<!--<script src="https://icesword8492-omnipotent-bot-3.glitch.me/api/v1/connection?format=js"></script>-->
<script src="https://jef.myhome.cx:8080/api/v1/connection?format=js"></script>
</head>
<body>
<nav class="white" role="navigation">
<div class="nav-wrapper container">
<a id="logo-container" href="#" class="brand-logo">DashBoard</a>
<!-- <a href="#" data-target="nav-mobile" class="sidenav-trigger"><i class="material-icons">menu</i></a> -->
</div>
</nav>
<div class="container">
<div class="section">
<!-- Icon Section -->
<div class="row">
<div class="col s12 m12">
<div class="icon-block">
<h2 class="center brown-text"><i class="material-icons">timeline</i></h2>
<h5 class="center">Connection Time</h5>
<canvas id="connectionTime" width="1800" height="1000"></canvas>
</div>
</div>
</div>
<div class="row">
<div class="col s12 m12">
<div class="icon-block">
<h2 class="center brown-text"><i class="material-icons">list</i></h2>
<h5 class="center">Ranking</h5>
<table>
<tbody>
<tr>
<th>Title</th><th>Member</th>
</tr>
<tr>
<td>Best NEET</td><td id="bestneet"></td>
</tr>
<tr>
<td>Stable NEET</td><td id="stableneet"></td>
</tr>
<tr>
<td>Average NEET</td><td id="averageneet"></td>
</tr>
<tr>
<td>Maximum NEET</td><td id="maximumneet"></td>
</tr>
<tr>
<td>NEET of the Day</td><td id="neetoftheday"></td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/js/materialize.min.js"></script>
<script src="js/main.js"></script>
</body>
</html>