-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadmin dashboard.html
More file actions
125 lines (118 loc) · 4.55 KB
/
Copy pathadmin dashboard.html
File metadata and controls
125 lines (118 loc) · 4.55 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
115
116
117
118
119
120
121
122
123
124
125
<!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="admin dashboard.css">
</head>
<body>
<div class="container">
<!-- Sidebar -->
<aside class="sidebar">
<h2>MedEase</h2>
<ul>
<li class="icon"> Dash Board</li>
<li class="active"> <span class="icon" ></span> Appointment</li>
<li class="icon"> Patients</li>
<li class="icon"> Doctors</li>
<li class="icon"> Emergency</li>
<li class="icon"> Settings</li>
</ul>
</aside>
<!-- Main Content -->
<main class="content">
<header>
<button class="appointment-btn">Appointment</button>
<input type="text" placeholder="Search...">
<img src="images/profil.png" class="image">
</header>
<!-- Overview Section -->
<section class="overview">
<div class="card appointments">
<h3>APPOINTMENTS</h3>
<p>TODAY</p>
<h2>150</h2>
</div>
<div class="card consultations">
<h3>CONSULTATIONS</h3>
<p>TODAY</p>
<h2>33</h2>
</div>
<div class="card cancelled">
<h3>CANCELLED</h3>
<p>TODAY</p>
<h2>03</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>
<!-- Appointment Table -->
<section class="appointments-table">
<h2>Today</h2>
<table>
<thead>
<tr>
<th>Appointment ID</th>
<th>Patient Name</th>
<th>Doctor Name</th>
<th>Date</th>
<th>Time</th>
<th>Action</th>
</tr>
</thead>
<tbody>
<tr>
<td>M123</td>
<td>Mr. John</td>
<td>Dr. C</td>
<td>9/8/2024</td>
<td>10:00</td>
<td><button class="view-btn">View</button></td>
</tr>
<tr>
<td>M223</td>
<td>Mr. James</td>
<td>Dr. G</td>
<td>9/8/2024</td>
<td>10:20</td>
<td><button class="view-btn">View</button></td>
</tr>
<tr>
<td>M243</td>
<td>Mrs. Thomas</td>
<td>Dr. B</td>
<td>9/8/2024</td>
<td>10:20</td>
<td><button class="view-btn">View</button></td>
</tr>
<tr>
<td>M523</td>
<td>Mr. Jack</td>
<td>Dr. C</td>
<td>9/8/2024</td>
<td>10:45</td>
<td><button class="view-btn">View</button></td>
</tr>
<tr>
<td>M1053</td>
<td>Miss Mary</td>
<td>Dr. D</td>
<td>9/8/2024</td>
<td>11:00</td>
<td><button class="view-btn">View</button></td>
</tr>
</tbody>
</table>
<div class="pagination">
<span>1</span> <span>2</span> <span>3</span> <span>4</span> <span>5</span> <span>6</span> <span class="next">Next</span>
</div>
</section>
</main>
</div>
</body>
</html>