forked from LightningHat/QMS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathopd.html
41 lines (36 loc) · 1.41 KB
/
opd.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>OPD Appointment Booking</title>
<link rel="stylesheet" href="opd.css">
</head>
<body>
<div class="container">
<h1>Book Your OPD Appointment</h1>
<form id="appointment-form">
<label for="hospital">Hospitals:</label>
<input type="hospital" id="hospital" name="hospital">
<label for="department">Select Department:</label>
<select id="department" name="department">
<option value="">--Select--</option>
<option value="cardiology">Cardiology</option>
<option value="neurology">Neurology</option>
<option value="orthopedics">Orthopedics</option>
<option value="pediatrics">Pediatrics</option>
</select>
<label for="date">Select Date:</label>
<input type="date" id="date" name="date">
<label for="time">Select Time:</label>
<input type="time" id="time" name="time">
<button type="button" onclick="bookAppointment()">Book Appointment</button>
</form>
<div id="confirmation" class="hidden">
<h2>Appointment Confirmed</h2>
<p id="confirmation-details"></p>
</div>
</div>
<script src="opd.js"></script>
</body>
</html>