-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathleveldashboard.html
More file actions
114 lines (109 loc) · 3.91 KB
/
leveldashboard.html
File metadata and controls
114 lines (109 loc) · 3.91 KB
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<!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">
<title>Dashboard</title>
<link rel="stylesheet" href="css/dashboard.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<header>
<a href="maindashboard.html">
<img src="img/logo.png" class="logo">
</a>
<div class="user">
<img src="img/user icon.png">
<h4 id="username">hokfjkello</h4>
<button onclick="location.href='maindashboard.html'">Dashboard</button>
<span id="group">
<button class="selected1" onclick="window.location='#modalRemainder'">
<i class="fa fa-bell"></i>
</button>
<span class="badge" id="badge"><b>0</b>
</span>
</span>
<button onclick="location.href='logout.html'">Logout</button>
</div>
</header>
<div data-ml-modal id="modalRemainder">
<a href="#!" class="modal-overlay"></a>
<div class="modal-dialog modal-dialog-lg">
<a href="#!" class="modal-close">×</a>
<h3 style="font-family:Georgia"><font color="maroon"><b><center>Drip Level Alerts</center></b></font></h3>
<div class="modal-content">
<div class="wrapper1">
<div class="form-conteniar">
<span class="threshold" id="threshold"></span><br>
</div>
</div>
</div>
</div>
</div>
<div id="block1">
<div class="common">
<center>
<h2>Drip Rate</h2>
<div class="box">
<img src="img/drip rate.svg" alt="img">
<h1 id="parameter1"></h1>
</div>
</center>
</div>
<div class="common">
<center>
<h2>Total Bottle Level</h2>
<div class="box">
<img src="img/total level.svg" class="test" alt="img">
<h1 id="parameter2"></h1>
</div>
</center>
</div>
</div>
<center>
<img src="img/patient bed.png">
<h1 id="bed">Dashboard</h1>
</center>
<div id="block2">
<div class="common">
<center>
<h2>Current Level</h2>
<div class="box">
<img src="img/current level.svg" alt="img">
<h1 id="parameter3"></h1>
</div>
</center>
</div>
<div class="common">
<center>
<h2>Threshold Level</h2>
<div class="box">
<img src="img/threshold.svg" alt="img">
<h1 id="parameter4"></h1>
</div>
</center>
</div>
</div>
<script src="https://www.gstatic.com/firebasejs/8.3.0/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/7.17.1/firebase-auth.js"></script>
<script src="https://www.gstatic.com/firebasejs/7.17.1/firebase-firestore.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.3.0/firebase-analytics.js"></script>
<script>
var firebaseConfig = {
apiKey: "AIzaSyAPQWbGHZ5ehLCln4fDKSlWbCj_w3HN0w4",
authDomain: "dripon-product.firebaseapp.com",
projectId: "dripon-product",
storageBucket: "dripon-product.appspot.com",
messagingSenderId: "302869427942",
appId: "1:302869427942:web:ca12a8f27390552312ad27",
measurementId: "G-YJW81PN5R9"
};
firebase.initializeApp(firebaseConfig);
firebase.analytics();
const auth = firebase.auth();
const fs = firebase.firestore();
</script>
<script src="js/dashboard.js"></script>
</body>
</html>