-
Notifications
You must be signed in to change notification settings - Fork 2
/
doctor.html
166 lines (159 loc) · 6.22 KB
/
doctor.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
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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
<!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>Doctor Dashboard</title>
<link rel="stylesheet" href="doctordashcss.css">
</head>
<body>
<div class="container">
<!-- Sidebar -->
<aside>
<div class="toggle">
<div class="logo">
<img src="doctor-logo.png" alt="Doctor Logo">
<h2>Dr. Smith</h2>
</div>
<span id="close-btn" class="close">×</span>
</div>
<div class="sidebar">
<a href="doctor.html" class="active"><span>🏠</span> Dashboard</a>
<a href="appointments.html"><span>📅</span> Appointments</a>
<a href="patients.html"><span>📋</span> Patients</a>
<a href="login.html"><span>🔒</span> Logout</a>
</div>
</aside>
<!-- Main Content -->
<main>
<div class="analyse">
<div class="status">
<div>
<h3>Active Patients</h3>
<h1>150</h1>
</div>
</div>
<div class="status">
<div>
<h3>Appointments Today</h3>
<h1>8</h1>
</div>
</div>
<div class="status">
<div>
<h3>New Messages</h3>
<h1>5</h1>
</div>
</div>
</div>
<!-- Upcoming Appointments -->
<section class="recent-orders">
<h2>Upcoming Appointments</h2>
<table>
<thead>
<tr>
<th>Patient Name</th>
<th>Appointment Time</th>
<th>Status</th>
<th>Details</th>
</tr>
</thead>
<tbody>
<tr>
<td>John Doe</td>
<td>10:00 AM</td>
<td class="primary">Confirmed</td>
<td class="primary">View</td>
</tr>
<tr>
<td>Jane Smith</td>
<td>11:30 AM</td>
<td class="warning">Pending</td>
<td class="primary">View</td>
</tr>
<tr>
<td>Michael Johnson</td>
<td>02:00 PM</td>
<td class="danger">Cancelled</td>
<td class="primary">View</td>
</tr>
</tbody>
</table>
</section>
<!-- Patient List -->
<section class="new-users">
<h2>Recent Patients</h2>
<div class="user-list">
<div class="user">
<img src="patient1.jpg" alt="Patient Photo">
<h3>Emily Clark</h3>
<p>Last Visit: 2 days ago</p>
</div>
<div class="user">
<img src="patient2.jpg" alt="Patient Photo">
<h3>David Brown</h3>
<p>Last Visit: 5 days ago</p>
</div>
<div class="user">
<img src="patient3.jpg" alt="Patient Photo">
<h3>Sarah White</h3>
<p>Last Visit: 1 week ago</p>
</div>
</div>
</section>
</main>
<!-- Right Section -->
<section class="right-section">
<div class="nav">
<button id="menu-btn"><span>☰</span></button>
<div class="dark-mode">
<span class="active">☀</span>
<span>☾</span>
</div>
<div class="profile">
<div class="profile-photo">
<img src="doctor-photo.jpg" alt="Doctor Photo">
</div>
<div class="info">
<h3>Dr. John Smith</h3>
<small>General Practitioner</small>
</div>
</div>
</div>
<div class="user-profile">
<img src="doctor-profile.jpg" alt="Doctor Profile">
<h2>Dr. John Smith</h2>
<p class="text-muted">"Committed to providing the best patient care."</p>
</div>
<div class="reminders">
<div class="header">
<h2>Reminders</h2>
<span>🔔</span>
</div>
<div class="notification">
<div class="icon">📅</div>
<div class="content">
<p>Follow up with Jane Smith</p>
<span class="text-muted">Today, 3:00 PM</span>
</div>
</div>
<div class="notification deactive">
<div class="icon">📅</div>
<div class="content">
<p>Review Michael Johnson's lab results</p>
<span class="text-muted">Tomorrow, 9:00 AM</span>
</div>
</div>
<div class="add-reminder">
<div>
<span>+</span> Add New Reminder
</div>
</div>
</div>
</section>
</div>
<script src="index.js"></script>
<script src="order.js"></script>
</body>
</html>