-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathappoitment-dashboard.html
More file actions
68 lines (64 loc) · 1.92 KB
/
Copy pathappoitment-dashboard.html
File metadata and controls
68 lines (64 loc) · 1.92 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.3.0/css/bootstrap.min.css">
<link rel="stylesheet" href="appoitment-dashboard.css">
<title>Appointment Dashboard</title>
</head>
<body>
<div class="container">
<h1>Appointment Dashboard</h1>
<table class="table">
<thead>
<tr>
<th>Doctor's Name</th>
<th>Specialty</th>
<th>Date of Appointment</th>
<th>Amount Paid</th>
<th></th>
</tr>
</thead>
<tbody>
<tr>
<td>Dr. Binam Bhandari</td>
<td>Cardiology</td>
<td>May 15, 2024</td>
<td>£150</td>
<td><button class="btn join-btn">Join Appointment</button></td>
</tr>
<tr>
<td>Dr. Safal Neupane</td>
<td>Dermatology</td>
<td>May 17, 2024</td>
<td>£100</td>
<td><button class="btn join-btn">Join Appointment</button></td>
</tr>
<tr>
<td>Dr. pujan Adhikari</td>
<td>Pediatrics</td>
<td>May 20, 2024</td>
<td>£120</td>
<td><button class="btn join-btn">Join Appointment</button></td>
</tr>
<tr>
<td>Dr. Jagat B. Acharya</td>
<td>Ophthalmology</td>
<td>May 22, 2024</td>
<td>£90</td>
<td><button class="btn join-btn">Join Appointment</button></td>
</tr>
<tr>
<td>Dr. Seejan Sakhya</td>
<td>Orthopedics</td>
<td>May 25, 2024</td>
<td>£180</td>
<td><button class="btn join-btn">Join Appointment</button></td>
</tr>
</tbody>
</table>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.3.0/js/bootstrap.bundle.min.js"></script>
</body>
</html>