You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
513 B
PHTML
19 lines
513 B
PHTML
3 years ago
|
<?php
|
||
|
session_start();
|
||
|
?>
|
||
|
<nav>
|
||
|
<div class="profile">
|
||
|
<div class="slice">
|
||
|
<ul>
|
||
|
<li>Yo, <b><?php echo htmlspecialchars($_SESSION["username"]); ?></b>! Another one on the tab?</li>
|
||
|
</ul>
|
||
|
</div>
|
||
|
<div class="slice">
|
||
|
<ul>
|
||
|
<li><a href="myList.php" >Beer List of Mine</a></li>
|
||
|
<li><a href="passChange.php" >Reset Your Password</a></li>
|
||
|
<li><a href="logout.php" >Log out.</a></li>
|
||
|
</ul>
|
||
|
</div>
|
||
|
</nav>
|