-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbooking.html
More file actions
55 lines (54 loc) · 2.1 KB
/
booking.html
File metadata and controls
55 lines (54 loc) · 2.1 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>CarePlus | Book</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
</head>
<body>
<nav class="navbar">
<a href="index.html" class="logo"><i class="fas fa-heartbeat"></i> CarePlus</a>
<div class="nav-links">
<a href="index.html">Home</a>
<a href="doctors.html">Doctors</a>
</div>
</nav>
<div class="hero-section bg-booking">
<div class="overlay"></div>
<div class="content-box">
<h2>Book Your Slot</h2>
<br>
<form id="bookingForm" class="form-box">
<div class="form-group">
<label>Patient Name:</label>
<input type="text" id="pName" required>
</div>
<div class="form-group">
<label>Select Doctor:</label>
<select id="doctorSelect" required>
<option value="">-- Choose Doctor --</option>
<option value="Dr. James Smith">Dr. James Smith</option>
<option value="Dr. Sarah Lee">Dr. Sarah Lee</option>
<option value="Dr. Alan Grant">Dr. Alan Grant</option>
</select>
</div>
<div class="form-group">
<label>Date:</label>
<input type="date" id="pDate" required>
</div>
<div class="form-group">
<label>Time:</label>
<select id="pTime" required>
<option>09:00 AM</option>
<option>11:00 AM</option>
<option>02:00 PM</option>
<option>04:00 PM</option>
</select>
</div>
<button type="submit" class="btn" style="width: 100%;">Confirm Booking</button>
</form>
</div>
</div>
<script src="script.js"></script>
</body>
</html>