diff options
Diffstat (limited to 'index.php')
-rw-r--r-- | index.php | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -17,10 +17,10 @@ session_start(); <span class="right"> <?php if (isset($_SESSION['admin']) && $_SESSION['admin'] == true) { - echo '<a class="right" href="/logout.php">Logout</a>'; - echo '<a class="right" href="admin.php">Administration</a>'; + echo '<a href="admin.php">Administration</a>'; + echo '<a href="/logout.php">Logout</a>'; } else { - echo '<a class="right" href="/admin.php">Login</a>'; + echo '<a href="/admin.php">Login</a>'; } ?> </span> |