This repository has been archived by the owner on Jan 4, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
index.html
55 lines (52 loc) · 1.83 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="Service status">
<meta name="robots" content="index, follow">
<meta http-equiv="refresh" content="300">
<title>Mix-Flix Status</title>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u"
crossorigin="anonymous">
<link id="stylesheet" rel="stylesheet" href="style-dark.css?v=20180304">
</head>
<body>
<div class="container">
<header>
<h1>Mix-Flix Status Page</h1>
</header>
<div class="panel" id="panel">
<div class="panel-heading">
<h3 class="panel-title" id="paneltitle"></h3>
</div>
</div>
<h4 class="page-header">Systems Status</h4>
<div class="list-group" id="services"></div>
<h4 class="page-header">Upcoming Maintenance</h4>
<div class="list-group" id="maintenance"></div>
<h4 class="page-header">Incidents</h4>
<div class="timeline-centered" id="incidents"></div>
<h4 class="page-header">Statistics</h4>
<div class="table-responsive" id="statistics">
<table class="table">
<thead>
<tr>
<th>Name</th>
<th>1 Day</th>
<th>7 Days</th>
<th>14 Days</th>
<th>30 Days</th>
</tr>
</thead>
<tbody></tbody>
</table>
</div>
<script src="https://code.jquery.com/jquery-3.3.1.min.js" integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.7.2/Chart.bundle.min.js" integrity="sha256-XF29CBwU1MWLaGEnsELogU6Y6rcc5nCkhhx89nFMIDQ="
crossorigin="anonymous"></script>
<script src="script.js?v=20180304"></script>
</body>
</html>