-
Notifications
You must be signed in to change notification settings - Fork 2
/
dashboard.html
47 lines (37 loc) · 1.34 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dashboard</title>
<link rel="stylesheet" href="style.css">
</head>
<body style="background-color: #42636A;">
<nav>
<a href="index.html">
<div class="logo">MedQ</div>
</a>
<ul class="nav-links">
<li><a href="index.html">Home</a></li>
<li><a href="department.html">Departments</a></li>
<li><a href="dashboard.html">Dashboard</a></li>
<li><a href="diagnosis.html">Disease Predictor </a></li>
<li><a href="medical history.html">Medical History</a></li>
<li><a href="login.html">Login</a></li>
</ul>
</nav>
<!-- Upcoming Appointments Section -->
<section id="upcoming-appointments" class="appointment-section">
<h2>Upcoming Appointments</h2>
<ul id="dataList"></ul>
</section>
<!-- Footer -->
<footer>
<p>© 2024 MedQ. All rights reserved.</p>
</footer>
<!-- Use an earlier version that does not use modules -->
<script src="https://www.gstatic.com/firebasejs/8.10.0/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.10.0/firebase-database.js"></script>
<script src="dashboard.js"></script>
</body>
</html>