This repository was archived by the owner on Oct 1, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathuptime.php
More file actions
71 lines (66 loc) · 1.98 KB
/
uptime.php
File metadata and controls
71 lines (66 loc) · 1.98 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
59
60
61
62
63
64
65
66
67
68
69
70
71
<?php
session_start();
include 'loginCheck.php';
?>
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<?php include 'head.php';?>
<title>Uptime - Admin Panel</title>
</head>
<body>
<!-- Include the Nav into the page -->
<?php include 'nav.php';?>
<div class="main">
<!-- Button to show/hide menu -->
<a href="#" data-target="slide-out" class="sidenav-trigger"><i class="material-icons">menu</i></a>
<div class="row">
<div class="col s12 center"><h5 id="overalluptimeheader">Overall Uptime</h5></div>
</div>
<div class="row">
<div class="col m4 s12 center">
<div id="uptime1days" class="card">
<div class="card-content">
<span class="card-title">Last 24 Hours</span>
<h5></h5>
</div>
</div>
</div>
<div class="col m4 s12 center">
<div id="uptime7days" class="card">
<div class="card-content">
<span class="card-title">Last 7 Days</span>
<h5></h5>
</div>
</div>
</div>
<div class="col m4 s12 center">
<div id="uptime30days" class="card">
<div class="card-content">
<span class="card-title">Last 30 Days</span>
<h5></h5>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col s12 center"><h5>Uptime Information</h5></div>
</div>
<div class="row respon-table">
<table class="col s12 m10 offset-m1" id="monitor_table">
<thead>
<tr>
<th>Name</th>
<th>URL</th>
<th>Last 7 Days</th>
<th>Avg. Response Time</th>
<th>Status</th>
</tr>
</thead>
<tbody></tbody>
</table>
</div>
</div>
<?php include 'foot.php';?>
</body>
</html>