-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstats.html
81 lines (77 loc) · 2.04 KB
/
stats.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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<!DOCTYPE html>
<html lang="en">
<head>
<title>Monitoring Sanitization</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
<!link rel="stylesheet" href="style.css">
</head>
<style>
.big{
top:70;
background-color:white;
margin-top:80px;
margin-left:550px;
margin-right:550px;
height:200px;
border-radius: 25px;
border: 3px solid #4a77d4;
box-shadow: 6px 8px 4px grey;
text-align:center;
}
.row{
margin-top:70px;
height:250px;
}
.col{
margin:10px;
margin-left:50px;
margin-right:50px;
border-radius: 25px;
border: 1px solid #4a77d4;
box-shadow: 0px 8px 4px grey;
text-align:center;
}
.ext{
margin-top:25px;
line-height:40px;
}
.ext1{
margin-top:40px;
line-height:50px;
font-size:25px;
color:#f95450;
}
</style>
<body>
<div class="container-fluid">
<div class="header">
<div><b>Monitoring Sanitization</b></div>
</div>
<br>
<br>
<div class="row">
<div class="col" >
<div class="ext"><b>Room 1</b><br>Employee Name: {{p1}}<br>Sanitized time: {{d1}}</div>
</div>
<div class="col" >
<div class="ext"><b>Room 2</b><br>Employee Name: {{p2}}<br>Sanitized time: {{d2}}</div>
</div>
</div>
<br>
<div class="row">
<div class="col" >
<div class="ext"><b>Room 3</b><br>Employee Name: {{p3}}<br>Sanitized time: {{d3}}</div>
</div>
<div class="col" >
<div class="ext"><b>Room 4</b><br>Employee Name: {{p4}}<br>Sanitized time: {{d4}}</div>
</div>
</div>
</div>
</body>
</html>