-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnavbar.php
21 lines (21 loc) · 1004 Bytes
/
navbar.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<nav class="navbar">
<div class="logo" onclick="document.location.href='/Main/index.php'">E - News</div>
<div class="nav-links">
<ul>
<li><a href="/Main/index.php">Home</a></li>
<li><a href="/Main/OtherPages/aboutus.php">About Us</a></li>
<li><a href="/Main/OtherPages/contactus.php">Contact Us</a></li>
<li><a href="/Main/OtherPages/reviewus.php">Review Us</a></li>
</ul>
</div>
<div>
<?php
if ($login_btn_text == 'Loggedin') {
echo '<span class="user-profile"><i class="fa fa-user" aria-hidden="true" style="font-size: 28px"></i>' . $_COOKIE["First_Name"] . " " . $_COOKIE["Last_Name"] . '</span>';
echo '<button class="btn" onclick="document.location.href=\'/Main/OtherPages/logout.php\'">Logout</button>';
} else {
echo '<button class="btn" onclick="document.location.href=\'/Main/OtherPages/login.php\'">Login</button>';
}
?>
</div>
</nav>