-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdoctor dashboard.html
More file actions
59 lines (53 loc) · 1.82 KB
/
doctor dashboard.html
File metadata and controls
59 lines (53 loc) · 1.82 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MedEase - Appointment</title>
<link rel="stylesheet" href="doctor dashboard.css">
</head>
<body>
<div class="container">
<!-- Sidebar -->
<aside class="sidebar">
<h2>MedEase</h2>
<ul>
<li class="active"> <span class="icon" ></span> Dashboard</li>
<li class="icon"> <a href="admin view patients.html">Appointments</a> </li>
<li class="icon"> Update Availabilty</li>
<li class="icon"> Settings</li>
</ul>
</aside>
<!-- Main Content -->
<main class="content">
<header>
<img src="images/profil.png" class="image">
</header>
<!-- Overview Section -->
<section class="overview">
<div class="card appointments">
<h3>APPOINTMENTS</h3>
<p>TODAY</p>
<h2>10</h2>
</div>
<div class="card consultations">
<h3>CONSULTATIONS</h3>
<p>TODAY</p>
<h2>8</h2>
</div>
<div class="card cancelled">
<h3>CANCELLED</h3>
<p>TODAY</p>
<h2>02</h2>
</div>
<div class="card calendar">
<h3>CALENDER</h3>
<div class="dates">
<span>19</span> <span>20</span> <span class="active">21</span> <span>22</span> <span>23</span>
</div>
</div>
</section>
</main>
</div>
</body>
</html>