-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact-us.php
33 lines (32 loc) · 1.19 KB
/
contact-us.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
<?php require_once "assets/php/requires/superHeader.php" ?>
<?php
$profile = ProfileHandler::getProfile($_SESSION['username'], ProfileHandler::PROFILE_USERNAME);
?>
<!DOCTYPE html>
<html lang="en">
<head>
<?php include_once "assets/php/includes/header.php"?>
<title>FlyNova - Contact Us</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>Contact Us</h2></div>
</div>
</div>
</div>
<div class="row" style="min-height: 100vh">
<div class="container pt-5 pb-5">
</div>
</div>
</div>
<?php include_once "assets/php/includes/footer.php" ?>
<script>
setNavbarPosition("sticky-top");
</script>
</body>
</html>