-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnav.php
executable file
·25 lines (24 loc) · 1.03 KB
/
nav.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
<nav class="nav">
<div class="site">
<img src="files/notes.png" class="logo" alt="notes">
<a href="login.php" class="siteName">Note Saver</a>
</div>
<?php
$url = $_SERVER['PHP_SELF'];
if ($url == "/bi0s/login.php" || $url == "/bi0s/register.php") {
echo ' <div class="choose">
<a class="select" href="tips.html">Tips</a>
<a class="select" href="login.php">Log in</a>
<a class="select" href="register.php">Register</a>
</div>';
} else {
echo '
<form method="post" class="choose">
<a class="select" href="bios.php">Upload</a>
<a class="select" href="view_images.php?view">View</a>
<a class="select" href="tips.html">Tips</a>
<button type="submit" name = "logout" class="select" value="logout" style="cursor: pointer;">Logout</button>
</form>';
}
?>
</nav>