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.
22 lines
609 B
PHP
22 lines
609 B
PHP
<?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>
|
|
<li></br></li>
|
|
<li></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>
|
|
</div>
|
|
</nav>
|