forked from Rohanjjj/Hackthon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappointments.html
120 lines (116 loc) · 4.64 KB
/
appointments.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Appointments</title>
<link rel="stylesheet" href="doctordashcss.css">
</head>
<body>
<div class="container">
<!-- Sidebar (Common across all pages) -->
<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" ><span>🏠</span> Dashboard</a>
<a href="appointments.html" class="active"><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>
<h1>Appointments</h1>
<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"><a href="#">View</a></td>
</tr>
<tr>
<td>Jane Smith</td>
<td>11:30 AM</td>
<td class="warning">Pending</td>
<td class="primary"><a href="#">View</a></td>
</tr>
<tr>
<td>Michael Johnson</td>
<td>02:00 PM</td>
<td class="danger">Cancelled</td>
<td class="primary"><a href="#">View</a></td>
</tr>
</tbody>
</table>
</section>
</main>
<!-- Right Section (Common across all pages) -->
<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>
</body>
</html>