-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnavmenu.php
36 lines (30 loc) · 1.05 KB
/
navmenu.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
<?php
// Generate the navigation menu if user is logged in:
echo '<hr />';
?>
<!-- External stylesheet -->
<link rel="stylesheet" type="text/css" href="style.css">
<?php if (isset($_SESSION['username'])): ?>
<div class="TenPxPaddingDiv">
<!-- | is the hex code for a vertical bar | -->
<a href="index.php">Home</a> |
<a href="createTopic.php">Create Topic</a> |
<a href="pickTopics.php">Pick Topics</a> |
<a href="editprofile.php">Edit Profile</a> |
<a href="logout.php"
onclick="return confirm('All chat data/history will be deleted, Are you sure?');">Log Out
(<?php echo $_SESSION['username'] ?>)</a> |
<a href="about.php">About/FAQ</a>
</div>
<?php else: ?>
<div class="TenPxPaddingDiv">
<!-- | is the hex code for a vertical bar | -->
<a href="index.php">Home</a> |
<a href="login.php">Log In</a> |
<a href="signup.php">Sign Up</a> |
<a href="about.php">About/FAQ</a>
</div>
<?php endif; ?>
<?php
echo '<hr />';
?>