-
Notifications
You must be signed in to change notification settings - Fork 0
/
Form.html
115 lines (102 loc) · 3.98 KB
/
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Event Page</title>
<link rel="stylesheet" href="formstyles.css">
</head>
<body>
<header>
<div class="logo">Event Mania</div>
<nav>
<a href="#home">Home</a>
<a href="#events">Events</a>
<a href="#categories">Categories</a>
<a href="#contact">Contact</a>
</nav>
<div class="search-bar">
<input type="text" placeholder="Search events...">
<button>Search</button>
</div>
</header>
<section class="banner">
<div class="slider">
<img src="https://assets-in.bmscdn.com/nmcms/events/banner/desktop/media-desktop-kisi-ko-batana-mat-ft-anubhav-singh-bassi-0-2023-7-25-t-16-3-33.jpg" alt="Event Banner 1" alt="Event Banner 1">
</div>
</section>
<section class="event-details">
<h1>Kisi Ko Batana Mat Ft. Anubhav Singh Bassi</h1>
<p class="date-time">August 18, 2024 - 07:00 PM</p>
<div class="description">
<p>After the great success of his previous show...</p>
<button class="more-info">Read More</button>
</div>
</section>
<!-- New Registration Form Section -->
<section class="ticket-booking">
<h2>Register for the Event</h2>
<div class="form-container">
<form id="event-form" action="payment.html" method="GET">
<div class="form-group">
<div>
<label for="first-name">First Name:</label>
<input type="text" id="first-name" name="first-name" required>
</div>
<div>
<label for="last-name">Last Name:</label>
<input type="text" id="last-name" name="last-name" required>
</div>
</div>
<label for="age">Age:</label>
<select id="age" name="age" required>
<option value="" disabled selected>Select Age</option>
<!-- Generate age options from 16 to 100 -->
<script>
for (let i = 16; i <= 100; i++) {
document.write(`<option value="${i}">${i}</option>`);
}
</script>
</select>
<label for="phone">Phone Number:</label>
<input type="tel" id="phone" name="phone" required>
<label for="email">Email ID:</label>
<input type="email" id="email" name="email" required>
<div class="ticket-options">
<select>
<option>Gold - ₹500</option>
<option>Platinum - ₹500</option>
</select>
<form action="https://kartikmehta0.github.io/Event-Mania/payment" method="get">
<button type="submit">Book Now</button>
</form>
</form>
</div>
</section>
<section class="venue-details">
<h2>Venue</h2>
<p>Deep Smriti Auditorium: Jaipur</p>
<div class="map">
<!-- Embed Google Map here -->
</div>
</section>
<section class="reviews">
<h2>Reviews</h2>
<div class="review">
<p>"Amazing show! Had a great time!" - User</p>
</div>
<!-- More reviews -->
</section>
<footer>
<p>© 2024 Event Mania. All rights reserved.</p>
<div class="footer-links">
<a href="#privacy">Privacy Policy</a>
<a href="#terms">Terms of Service</a>
</div>
<form class="newsletter-signup">
<input type="email" placeholder="Subscribe to our newsletter">
<button>Subscribe</button>
</form>
</footer>
</body>
</html>