-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNavigation-bar.php
30 lines (29 loc) · 1.33 KB
/
Navigation-bar.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
<nav>
<div class="col-1">
<p class="main_title" ><a class="create_log_btn" href="Index.php">GWSC</a></p>
</div>
<div class="col-11">
<div class="button-side">
<div class="nav-buttons">
<?php
if (isset($_SESSION['user_id'])) {
echo '<a class="login" href="logout.php">Sign Out</a>';
} else {
echo '<a class="login" href="Captcha_verification.php">Login</a>';
echo '<a class="signup" href="Create_account.php">Sign Up</a>';
}
?>
<a class="nav-link" href="Pitch_types_and_availability.php">Pitch Types & Availability</a>
<a class="nav-link" href="Local_Attractions.php">Local Attractions</a>
<a class="nav-link" href="Contact_us.php">Contact Us</a>
<a class="nav-link" href="Features.php">Features</a>
<a class="nav-link" href="Information.php">Information</a>
<a class="nav-link" href="Reviews.php">Reviews</a>
<a class="nav-link-home" href="Index.php">Home</a>
</div>
<div class="burger-menu">
<img src="all_images/features/burger.png">
</div>
</div>
</div>
</nav>