-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
227 lines (219 loc) · 7.3 KB
/
index.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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Login & Signup</title>
<link rel="stylesheet" href="styles.css">
</head>
<body class="auth-page">
<div class="auth-container">
<div class="auth-header">
<h1 id="form-title">Login</h1>
<p id="form-subtitle">Welcome back! Please login to your account.</p>
</div>
<form id="auth-form">
<!-- Email Input -->
<div class="form-group">
<label for="email">Email</label>
<input type="email" id="email" placeholder="Enter your email" required>
</div>
<!-- Password Input -->
<div class="form-group">
<label for="password">Password</label>
<input type="password" id="password" placeholder="Enter your password" required>
</div>
<!-- Confirm Password (Signup only) -->
<div class="form-group hidden" id="confirm-password-group">
<label for="confirm-password">Confirm Password</label>
<input type="password" id="confirm-password" placeholder="Confirm your password">
</div>
<!-- Submit Button -->
<button type="submit" id="auth-button">Login</button>
</form>
<!-- Toggle Between Login and Signup -->
<div class="auth-toggle">
<p>
Don't have an account?
<button id="toggle-signup" class="link-button">Signup</button>
</p>
</div>
</div>
<script src="script.js"></script>
</body>
</html>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Mahakumbh Mela - Home</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<div class="logo">Mahakumbha Mela</div>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="navigation.html">Navigation</a></li>
<li><a href="booking.html">Booking</a></li>
<li><a href="events.html">Events</a></li>
<li><a href="emergency.html">Emergency</a></li>
</ul>
</nav>
</header>
<main>
<h1>Welcome to the Mahakumbha Mela</h1>
<p>Explore the largest religious gathering with ease.</p>
<div class="features">
<a href="navigation.html" class="feature-box">Navigation</a>
<a href="booking.html" class="feature-box">Accommodation</a>
<a href="events.html" class="feature-box">Event Updates</a>
<a href="emergency.html" class="feature-box">Emergency Assistance</a>
</div>
</main>
<footer>
<p>© 2024 Mahakumbha Mela. All rights reserved.</p>
</footer>
</body>
</html>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Navigation</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<div class="logo">Mahakumbha Mela</div>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="navigation.html">Navigation</a></li>
<li><a href="booking.html">Booking</a></li>
<li><a href="events.html">Events</a></li>
<li><a href="emergency.html">Emergency</a></li>
</ul>
</nav>
</header>
<main>
<h1>Navigation & Crowd Management</h1>
<p>Use our interactive map to find your way easily.</p>
<div id="map"> <!-- Placeholder for the map --> </div>
</main>
<footer>
<p>© 2024 Mahakumbha Mela. All rights reserved.</p>
</footer>
<script src="scripts/navigation.js"></script>
</body>
</html>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Booking</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<div class="logo">Mahakumbha Mela</div>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="navigation.html">Navigation</a></li>
<li><a href="booking.html">Booking</a></li>
<li><a href="events.html">Events</a></li>
<li><a href="emergency.html">Emergency</a></li>
</ul>
</nav>
</header>
<main>
<h1>Accommodation & Booking</h1>
<form id="booking-form">
<label for="location">Location:</label>
<input type="text" id="location" name="location" required>
<label for="date">Date:</label>
<input type="date" id="date" name="date" required>
<label for="guests">Guests:</label>
<input type="number" id="guests" name="guests" required>
<button type="submit">Search</button>
</form>
</main>
<footer>
<p>© 2024 Mahakumbha Mela. All rights reserved.</p>
</footer>
<script src="scripts/booking.js"></script>
</body>
</html>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Events</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<div class="logo">Mahakumbha Mela</div>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="navigation.html">Navigation</a></li>
<li><a href="booking.html">Booking</a></li>
<li><a href="events.html">Events</a></li>
<li><a href="emergency.html">Emergency</a></li>
</ul>
</nav>
</header>
<main>
<h1>Event Updates</h1>
<div id="event-list">
<div class="event-card">
<h2>Morning Prayer</h2>
<p>Time: 6:00 AM</p>
<p>Location: Ganga Ghat</p>
</div>
</div>
</main>
<footer>
<p>© 2024 Mahakumbha Mela. All rights reserved.</p>
</footer>
<script src="scripts/events.js"></script>
</body>
</html>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Emergency Assistance</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<div class="logo">Mahakumbha Mela</div>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="navigation.html">Navigation</a></li>
<li><a href="booking.html">Booking</a></li>
<li><a href="events.html">Events</a></li>
<li><a href="emergency.html">Emergency</a></li>
</ul>
</nav>
</header>
<main>
<h1>Emergency Assistance</h1>
<button id="sos-button">SOS</button>
</main>
<footer>
<p>© 2024 Mahakumbha Mela. All rights reserved.</p>
</footer>
<script src="scripts/emergency.js"></script>
</body>
</html>