-
Notifications
You must be signed in to change notification settings - Fork 4
/
dashboard.html
61 lines (57 loc) · 2.39 KB
/
dashboard.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
<!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.0">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css" integrity="sha512-iBBXm8fW90+nuLcSKlbmrPcLa0OT92xO1BIsZ+ywDWZCvqsWgccV3gFoRBv0z+8dLJgyAHIhR35VZc2oM/gI1w==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<title>Dashboard</title>
<link rel="stylesheet" href="./styles/fonts.css">
<link rel="stylesheet" href="/styles/dasboard.css">
<title>Dashboard</title>
</head>
<body>
<div class="main-container">
<div class="left-container">
<div class="top-container">
<h1 class="weather-temperature"></h1><img class="weather-image" src="" alt="weather-icon">
</div>
<div class="bottom-container">
<h3 class="weather-condition"></h3>
</div>
</div>
<div class="right-container">
<div class="top-container">
<h1 class="current-time"></h1>
</div>
<div class="bottom-container">
<h3 class="current-date"></h3>
</div>
</div>
</div>
<div id="goingLeft" class="button-container button-demo">
<a id="handLeft" href="/covid.html"><span></span></a>
</div>
<div class="notification-container fade">
<ul class="notification-list "></ul>
</div>
<div class="canvas-wrapper">
<canvas id="output" width="1080" height="1920"></canvas>
<div class="video-container">
<video id="video"></video>
</div>
<div id="webglContainer"></div>
</div>
<div class="spinner-loader">
<img src="/src/spinner-white.gif" alt="spinner" width="100" height="100">
</div>
<div class="handwave-loader">
<img src="/src/handwave.gif" alt="handwave" width="100" height="100">
</div>
<script src="https://www.gstatic.com/firebasejs/8.8.1/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.8.1/firebase-analytics.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.8.1/firebase-auth.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.8.1/firebase-database.js"></script>
<script src="/src/dashboard.js"></script>
</body>
</html>