-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
445 lines (414 loc) · 15.4 KB
/
index.php
File metadata and controls
445 lines (414 loc) · 15.4 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
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
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
<!DOCTYPE html>
<html lang="en-US">
<head>
<title>TravelIQ</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta charset="UTF-8" />
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css"
/>
<!-- link relationships -->
<link rel="stylesheet" href="./web/css/styles.css" />
<!-- Font Awesome Cdn -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.1/css/all.min.css"
/>
<!-- Font Awesome Cdn -->
<!-- Google Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap"
rel="stylesheet"
/>
<!-- Google Fonts -->
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"
integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz"
crossorigin="anonymous"
></script>
<script src="/web/js/index.js"></script>
</head>
<body>
<header id="Home">
<div class="container-fluid">
<!-- Navigation bar -->
<nav class="navbar navbar-expand-lg navbar-light text-light fixed-top">
<div class="container-fluid">
<!-- put logo here -->
<a class="navbar-brand" href="#"
><img src="../../../pics/TravelIQ-Logo-text.png" alt="" srcset="" class="navbar-logo"></a
></a
>
<!-- hamburger navbar -->
<button
class="navbar-toggler bg-transparent"
type="button"
data-bs-toggle="collapse"
data-bs-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent"
aria-expanded="false"
aria-label="Toggle navigation"
>
<!-- links -->
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul
class="navbar-nav d-flex flex-column flex-lg-row align-items-center mx-auto mb- mb-lg-0"
>
<li class="nav-item">
<a class="nav-link" aria-current="page" href="#Home">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#Gallery">Gallery</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#About">About</a>
</li>
</ul>
<div
class="d-flex flex-lg-row align-items-center justify-content-center nav-butts pt-auto pb-2"
>
<a
href="web/php/login.php"
class="text-white text-decoration-none mb-2 mb-lg-0 me-lg-3"
>Login</a
>
<a
href="web/php/register-page-1.php"
class="text-white text-decoration-none px-3 py-1 rounded-4"
style="background-color: pink; margin-left: 5px"
>Sign up</a
>
</div>
</div>
</div>
</nav>
</div>
</header>
<!-- navbar end -->
<!-- test -->
<!-- Carousel -->
<div>
<div
id="carouselExampleCaptions"
class="carousel slide carousel-fade"
data-bs-ride="carousel"
>
<div class="carousel-indicators">
<button
type="button"
data-bs-target="#carouselExampleCaptions"
data-bs-slide-to="0"
class="active"
aria-current="true"
aria-label="Slide 1"
></button>
<button
type="button"
data-bs-target="#carouselExampleCaptions"
data-bs-slide-to="1"
aria-label="Slide 2"
></button>
<button
type="button"
data-bs-target="#carouselExampleCaptions"
data-bs-slide-to="2"
aria-label="Slide 3"
></button>
</div>
<!-- 1st carousel item -->
<div class="carousel-inner">
<div class="carousel-item active c-item vh-100">
<img src="./pics/boracay.png" class="d-block w-100 c-img" />
<div class="carousel-caption top-0 d-flex flex-column justify-content-center align-items-center">
<p class="fs-5 mt-5 ">Don't know where to go?</p>
<h1 class="display-6 fw-semibold text-uppercase">
<span class="text-warning">Boracay</span> is just few clicks away
</h1>
<!-- Buttons for booking -->
<div class="slider-btn">
<a href="customer-booking.php" class="btn px-4 py-2 fs-5 mt-5 book-btn">Take me</a>
</div>
<div class="carousel-caption text-uppercase bottom-0">
<p > Scroll down to see more</p>
</div>
</div>
</div>
<div class="carousel-item c-item vh-100">
<img src="./pics/palawan.png" class="d-block w-100 c-img" />
<div class="carousel-caption top-0 d-flex flex-column justify-content-center align-items-center">
<p class="fs-5 mt-5 ">Don't know where to go?</p>
<h1 class="display-6 fw-semibold text-uppercase">
<span class="text-warning">Palawan</span> is just few clicks away
</h1>
<!-- Buttons for booking -->
<div class="slider-btn">
<a href="customer-booking.php" class="btn px-4 py-2 fs-5 mt-5 book-btn">Take me</a>
</div>
<div class="carousel-caption text-uppercase bottom-0">
<p > Scroll down to see more</p>
</div>
</div>
</div>
<div class="carousel-item c-item vh-100">
<img src="./pics/siargao.png" class="d-block w-100 c-img" />
<div class="carousel-caption top-0 d-flex flex-column justify-content-center align-items-center">
<p class="fs-5 mt-5 ">Don't know where to go?</p>
<h1 class="display-6 fw-semibold text-uppercase">
<span class="text-warning">Siargao</span> is just few clicks away
</h1>
<!-- Buttons for booking -->
<div class="slider-btn">
<a href="customer-booking.php" class="btn px-4 py-2 fs-5 mt-5 book-btn">Take me</a>
</div>
<div class="carousel-caption text-uppercase bottom-0">
<p > Scroll down to see more</p>
</div>
</div>
</div>
</div>
<button
class="carousel-control-prev"
type="button"
data-bs-target="#carouselExampleCaptions"
data-bs-slide="prev"
>
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="visually-hidden">Previous</span>
</button>
<button
class="carousel-control-next"
type="button"
data-bs-target="#carouselExampleCaptions"
data-bs-slide="next"
>
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="visually-hidden">Next</span>
</button>
</div>
</div>
<!-- Gallery -->
<section class="gallery pb-5 pt-5" id="Gallery">
<div class="container mt-5 pb-5 gallery-bg">
<div class="main-txt">
<h1 class="text-center display-6 fw-medium text-capitalized h1-text">
Popular Destinations
</h1>
</div>
<!-- Gallery Photos -->
<div class="row" style="margin-top: 30px">
<div class="col-md-4 py-3 py-md-0">
<div class="card card-gal">
<a href="web/php/register-page-1.php">
<div class="image-overlay"></div>
<img src="./pics/Destination/International/Japan.jpg" alt="" height="230px" />
<div class="card-img-overlay card-img">
<h5 class="card-title fw-semibold">Japan</h5>
</div>
</a>
</div>
</div>
<!-- 2nd pic -->
<div class="col-md-4 py-3 py-md-0">
<div class="card card-gal">
<a href="web/php/register-page-1.php">
<div class="image-overlay"></div>
<img src="./pics/Gallery/bohol.png" alt="" height="230px" />
<div class="card-img-overlay card-img">
<h5 class="card-title fw-semibold">Bohol</h5>
</div>
</a>
</div>
</div>
<!-- 3rd pic -->
<div class="col-md-4 py-3 py-md-0">
<div class="card card-gal">
<a href="web/php/register-page-1.php">
<div class="image-overlay"></div>
<img src="./pics/Destination/International/Hongkong.jpg" alt="" height="230px" />
<div class="card-img-overlay card-img">
<h5 class="card-title fw-semibold">Hong Kong</h5>
</div>
</a>
</div>
</div>
</div>
<!-- 4th pic -->
<div class="row" style="margin-top: 30px">
<div class="col-md-4 py-3 py-md-0">
<div class="card card-gal">
<a href="web/php/register-page-1.php">
<div class="image-overlay"></div>
<img src="./pics/Destination/International/South Korea.jpg" alt="" height="230px" />
<div class="card-img-overlay card-img">
<h5 class="card-title fw-semibold">South Korea</h5>
</div>
</a>
</div>
</div>
<!-- 5thpic -->
<div class="col-md-4 py-3 py-md-0">
<div class="card card-gal">
<a href="web/php/register-page-1.php">
<div class="image-overlay"></div>
<img src="./pics/Destination/Locals/El Nido.jpg" alt="" height="230px" />
<div class="card-img-overlay card-img">
<h5 class="card-title fw-semibold">El Nido</h5>
</div>
</a>
</div>
</div>
<!-- 6th pic -->
<div class="col-md-4 py-3 py-md-0">
<div class="card card-gal">
<div class="image-overlay"></div>
<a href="web/php/register-page-1.php">
<img
src="./pics/Destination/International/Singapore.jpg"
class="card-img-top"
alt=""
height="230px"
/>
<div class="card-img-overlay card-img">
<h5 class="card-title fw-semibold">Singapore</h5>
</div>
</a>
</div>
</div>
</div>
</div>
</section>
<!-- About US -->
<section class="about section-padding about-us" id="About">
<div class="container-fluid">
<div class="row">
<div class="col-lg-4 col-md-12 col-12">
<div class="about-img">
<img class="img-fluid img-item" src="pics/travel-iq.png" />
</div>
</div>
<div class="col-lg-8 col-md-12 col-12 ps-lg-5 mt-md-5 mt-5 pb-5">
<div class="about-text pt-5">
<h2>
We Can Provide the Best Quality<br />
Services Ever
</h2>
<p>
Welcome to Travel IQ, your ultimate destination for all things
travel! Whether you're a seasoned globetrotter or planning your
first adventure, Travel IQ is designed to provide you with
everything you need to make your journey unforgettable.
</p>
<a class="btn" href="#">Learn More</a>
</div>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="footer-bg text-center">
<!-- Grid container -->
<div class="container p-4">
<!-- Section: Social media -->
<section class="mb-4">
<!-- Facebook -->
<a
class="btn btn-primary btn-floating m-1 i-icons"
style="background-color: #3b5998"
href="#!"
role="button"
><i class="fab fa-facebook-f"></i>
</a>
<!-- Twitter -->
<a
class="btn btn-primary btn-floating m-1 i-icons"
style="background-color: #55acee"
href="#!"
role="button"
><i class="fab fa-twitter"></i
></a>
<!-- Google -->
<a
class="btn btn-primary btn-floating m-1 i-icons"
style="background-color: #dd4b39"
href="#!"
role="button"
><i class="fab fa-google"></i
></a>
<!-- Instagram -->
<a
class="btn btn-primary btn-floating m-1 i-icons"
style="background-color: #ac2bac"
href="#!"
role="button"
><i class="fab fa-instagram"></i
></a>
</section>
<!-- Section: Text -->
<!-- Section: Text -->
</div>
<!-- Grid container -->
<!-- Copyright -->
<div class="text-center p-3" style="background-color: rgba(0, 0, 0, 0.2)">
© 2024 Copyright:
<a class="text-dark" href="#">TravelIQ</a>
</div>
<!-- Copyright -->
</footer>
<!-- Footer -->
</body>
</html>
<script>
//Nav Bar Scrolling
const navEl = document.querySelector(".navbar");
const textIQ = document.querySelector(".iq-text");
window.addEventListener("scroll", () => {
if (window.scrollY >= 2) {
navEl.classList.add("navbar-scrolled");
textIQ.classList.add("iq-texts");
} else if (window.scrollY < 2) {
navEl.classList.remove("navbar-scrolled");
textIQ.classList.remove("iq-texts");
}
});
</script>
<!-- additional navbar -->
<!-- Drop down menu -->
<!-- <li class="nav-item dropdown">
<a
class="nav-link dropdown-toggle"
href="#"
role="button"
data-bs-toggle="dropdown"
aria-expanded="false"
>
Dropdown
</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="#">Action</a></li>
<li><a class="dropdown-item" href="#">Another action</a></li>
<li><hr class="dropdown-divider" /></li>
<li>
<a class="dropdown-item" href="#">Something else here</a>
</li>
</ul>
</li>
<li class="nav-item">
<a class="nav-link disabled" aria-disabled="true">Disabled</a>
</li> -->
<!-- Saerch bar -->
<!-- <form class="d-flex" role="search">
<input
class="form-control me-2"
type="search"
placeholder="Search"
aria-label="Search"
/>
<button class="btn btn-outline-success" type="submit">
Search
</button>
</form> -->