-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtermsAndAgreements.php
40 lines (40 loc) · 1.86 KB
/
termsAndAgreements.php
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
<?php require_once "assets/php/requires/superHeader.php" ?>
<?php
if (
isset($_SESSION['username']) &&
!empty($_SESSION['username'])
) {
$profile = ProfileHandler::getProfile($_SESSION['username'], ProfileHandler::PROFILE_USERNAME);
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<?php include_once "assets/php/includes/header.php"?>
<title>FlyNova - Terms and Agreements</title>
<link rel="stylesheet" href="assets/css/bookingPages.css" />
</head>
<body class="bg-dark">
<?php include_once "assets/php/includes/nav.php" ?>
<div class="container-fluid" id="bookingContainer">
<div class="row" style="background-color: rgba(255,255,255,0.85)">
<div class="container">
<div class="row">
<div class="col-12 pb-3 pt-3" style="max-width: 50%; overflow-y: hidden"><h2>Terms<span class="d-none d-md-inline"> and Agreements</span></h2></div>
</div>
</div>
</div>
<div class="row text-white" style="min-height: 100vh">
<div class="container pt-5 pb-5">
<span style="font-size: 2em">FlyNova Terms and Agreements</span>
<br /><br />
<span style="font-size: 1.25em"> Welcome to FlyNova. Here are FlyNova, we are engaging ourselves to develop a system improves the memorizing and consuming experience of our fellow senior high school and tertiary students towards airport codes, airline codes, country codes and city codes.<br /><br /> In order to achieve </span>
</div>
</div>
</div>
<?php include_once "assets/php/includes/footer.php" ?>
<script>
setNavbarPosition("sticky-top");
</script>
</body>
</html>