forked from tushargupta1504/Medical-Website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appointment.html
53 lines (46 loc) · 1.99 KB
/
appointment.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Doctor Appointment</title>
<link rel="stylesheet" href="Appointment.css">
</head>
<body>
<div class="container">
<h1>Book Your Doctor's Appointment</h1>
<form class="appointment-form">
<div class="form-group">
<label for="name">Full Name:</label>
<input type="text" id="name" name="name" placeholder="Enter your full name" required>
</div>
<div class="form-group">
<label for="email">Email:</label>
<input type="email" id="email" name="email" placeholder="Enter your email" required>
</div>
<div class="form-group">
<label for="phone">Phone Number:</label>
<input type="tel" id="phone" name="phone" placeholder="Enter your phone number" required>
</div>
<div class="form-group">
<label for="date">Appointment Date:</label>
<input type="date" id="date" name="date" required>
</div>
<div class="form-group">
<label for="doctor">Select Doctor:</label>
<select id="doctor" name="doctor" required>
<option value="" disabled selected>Select a doctor</option>
<option value="dr_smith">Dr. John Smith</option>
<option value="dr_jones">Dr. Emily Jones</option>
<option value="dr_brown">Dr. Michael Brown</option>
</select>
</div>
<div class="form-group">
<label for="message">Additional Notes:</label>
<textarea id="message" name="message" rows="4" placeholder="Any special concerns or requirements"></textarea>
</div>
<button type="submit" class="btn">Book Appointment</button>
</form>
</div>
</body>
</html>