-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (45 loc) · 1.59 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>.: Service Status :.</title>
<link rel="stylesheet" href="lib/bootstrap/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="lib/bootstrap/dist/css/bootstrap-theme.min.css">
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<div class="container">
<div class="page-header">
<h1>Service Status</h1>
</div>
<div class="row">
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">Services</h3>
</div>
<div class="panel-body">
<div id="spinner" class="spinner">
<img src="img/spinner.gif" height="70" width="70">
</div>
<table class="table table-striped">
<thead>
<tr>
<th>Service</th>
<th>Response Time</th>
<th>Status</th>
</tr>
</thead>
<tbody id ="services"></tbody>
</table>
</div>
</div>
</div>
</div>
<footer>
<div class="container">
<p class="muted credit text-center">By <a href="http://majidsadeghi.com">Majid Garmaroudi</a></p>
</div>
</footer>
<script data-main="js/main" src="./lib/requirejs/require.js" type="text/javascript" async></script>
</body>
</html>