aboutsummaryrefslogtreecommitdiff
path: root/index.php
diff options
context:
space:
mode:
Diffstat (limited to 'index.php')
-rw-r--r--index.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/index.php b/index.php
index 39a38ab..5262804 100644
--- a/index.php
+++ b/index.php
@@ -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>