blob: 526f63b82cbc84e1b35d6e9938f96a563f8a1617 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<h1>cflip.net forum<sup style="font-size: small;">beta</sup></h1>
[<a href="/forum/">Home</a>]
[<a href="/forum/all.php">All Threads</a>]
[<a href="/forum/all-posts.php">All Posts</a>]
[<a href="/forum/create_thread.php">Create a thread</a>]
<span style="float:right;">
<?php
if (isset($_SESSION['signed_in'])) {
echo '[<a href="/forum/user/'. $_SESSION['user_name'] .'">' . $_SESSION['user_name'] . '\'s Profile</a>] [<a href="includes/signout_inc.php">Log out</a>]';
} else {
echo '<a class="nav_button" href="signin.php">Sign in</a> or <a class="nav_button" href="register.php">Register an account</a>';
}
?>
</span>
|