-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemplate.html
More file actions
58 lines (57 loc) · 1.65 KB
/
Copy pathtemplate.html
File metadata and controls
58 lines (57 loc) · 1.65 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Uptime Report</title>
<script src="https://cdn.jsdelivr.net/npm/moment@2.24.0/moment.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/chart.js@2.8.0"></script>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/bulma@0.8.0/css/bulma.min.css"
/>
<style>
.chart-container {
height: 40vh;
}
</style>
</head>
<body>
<div class="container is-fluid">
<div class="columns">
<div class="column">
<p>${CURRENT_DATETIME}</p>
</div>
</div>
<div class="columns is-desktop">
<div class="column">
<p class="subtitle is-4">Last Online</p>
<p class="title is-1">${LAST_TIME}</p>
<p class="subtitle is-6">${LAST_DATE}</p>
</div>
<div class="column">
<p class="subtitle is-4">24 Hour Uptime</p>
<p class="title is-1"><span id="uptime"></span></p>
</div>
<div class="column">
<p class="subtitle is-4">IP Address</p>
<p class="title is-1">${LAST_IP}</p>
</div>
</div>
<div class="columns" style="margin-top:2rem">
<div class="chart-container column">
<p class="subtitle is-4">Last 4 hours</p>
<canvas id="chart"></canvas>
</div>
</div>
<div class="columns" style="margin-top:2rem">
<div class="column">
<p class="subtitle is-4">Last log</p>
<p>
<code>${LAST_TRACK}</code>
</p>
</div>
</div>
</div>
<script src="uptime.js"></script>
</body>
</html>