Added logout link. 2013-06-25
authorIain Patterson <me@iain.cx>
Tue, 25 Jun 2013 10:26:33 +0000 (06:26 -0400)
committerIain Patterson <me@iain.cx>
Tue, 25 Jun 2013 10:26:33 +0000 (06:26 -0400)
Configure web server to deny all requests for the /logout URI, for
example with "require user nonexistent" thus forcing a reauthentication.

lib/header.php
www/style.css

index 88a7271..75cd167 100644 (file)
@@ -5,7 +5,6 @@
 <body>
 
 <p id="header">
-<strong> <?php if ($username) echo "<em>$username</em>@"; echo "$charity"; ?></strong>
 <?php if ($username) { ?>
 <a href="/city">Cities</a>
 /
 <a href="/hub">Hubs</a>
 /
 <a href="/donation">Donations</a>
-<?php } ?>
+
+<strong><em><?php echo $username; ?></em>@<?php echo $charity; ?></strong>
+<a href="/logout" class="smaller">logout</a>
+<?php } else echo "<strong>$charity</strong>"; ?>
 </p>
 
 <div id="main">
index 932a1e9..203ea50 100644 (file)
@@ -91,3 +91,7 @@ a.delete {
 .small {
   font-size: 75%;
 }
+
+.smaller {
+  font-size: 25%;
+}