-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.html
65 lines (53 loc) · 2.44 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
<!doctype html>
<html class="no-js" lang="">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title></title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="manifest" href="site.webmanifest">
<link rel="apple-touch-icon" href="icon.png">
<!-- Place favicon.ico in the root directory -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<!--[if lte IE 9]>
<p class="browserupgrade">You are using an <strong>outdated</strong> browser. Please <a href="https://browsehappy.com/">upgrade your browser</a> to improve your experience and security.</p>
<![endif]-->
<nav class="navbar sticky-top navbar-light bg-light">
<a class="navbar-brand" href="#">
<img src="chisun_college_hku.png" height="60" class="d-block align-top" alt="">
Chi Sun Smart Laundry System
</a>
</nav>
<div class="container">
<div class="row">
<div class="col-sm">
<h3 class="text-center">Dryers</h3>
<div class="card">
<ul id="dryer_status" class="list-group list-group-flush">
</ul>
</div>
</div>
<div class="col-sm">
<h3 class="text-center">Washers</h3>
<div class="card">
<ul id="washer_status" class="list-group list-group-flush">
</ul>
</div>
</div>
</div>
<img src="ajax-loader.gif" id="loading-indicator">
</div>
<div class="footer fixed-bottom">
<small>© Copyright 2018, Chi Sun Turing Club</small>
</div>
<script src="js/vendor/modernizr-3.5.0.min.js"></script>
<script src="https://code.jquery.com/jquery-3.2.1.min.js" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous"></script>
<script>window.jQuery || document.write('<script src="js/vendor/jquery-3.2.1.min.js"><\/script>')</script>
<script src="js/plugins.js"></script>
<script src="js/main.js"></script>
</body>
</html>