forked from zyfer416/GYM-WEBSITE
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbooking_form.html
56 lines (49 loc) · 2.05 KB
/
booking_form.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Booking Form</title>
<link rel="stylesheet" href="booking_form.css">
</head>
<body>
<header>
<h1>Book Your Yoga Session</h1>
</header>
<main>
<form action="https://formsubmit.co/eb28f13801d4329bf67804257d8452c2" method="POST" class="booking-form">
<!-- Hidden Inputs for FormSubmit -->
<input type="hidden" name="_subject" value="New Yoga Booking">
<input type="hidden" name="_captcha" value="false">
<input type="hidden" name="_template" value="table">
<!-- Name -->
<label for="name">Name:</label>
<input type="text" id="name" name="name" required placeholder="Enter your full name">
<!-- Email -->
<label for="email">Email:</label>
<input type="email" id="email" name="email" required placeholder="Enter your email address">
<!-- Phone -->
<label for="phone">Phone:</label>
<input type="tel" id="phone" name="phone" placeholder="Enter your contact number">
<!-- Teacher -->
<label for="teacher">Yoga Teacher:</label>
<select id="teacher" name="teacher">
<option value="Sadhushri">Sadhushri</option>
<option value="Yogi Ankit Ji">Yogi Ankit Ji</option>
<option value="Sankey Kumar Sharma">Sankey Kumar Sharma</option>
</select>
<!-- Date -->
<label for="date">Preferred Date:</label>
<input type="date" id="date" name="date" required>
<!-- Time -->
<label for="time">Preferred Time:</label>
<input type="time" id="time" name="time" required>
<!-- Submit -->
<button type="submit" class="submit-btn">Book Now</button>
</form>
</main>
<footer>
<p>© 2024 Royal Fitness</p>
</footer>
</body>
</html>