From 2a5cdcb57e883a1ef885c131ff577697c6a6cecc Mon Sep 17 00:00:00 2001 From: dave Date: Mon, 12 Nov 2007 20:43:47 +0000 Subject: [PATCH] - Put a login bar in the header that always has a logout link, eventually it'll have more. --- common.inc.php | 34 ++++++++++++++++++++++++++++++++++ sfiab.css | 6 ++++++ 2 files changed, 40 insertions(+) diff --git a/common.inc.php b/common.inc.php index 29859ae2..10c462d0 100644 --- a/common.inc.php +++ b/common.inc.php @@ -421,6 +421,40 @@ if(substr(getcwd(),-6)=="/admin" || substr(getcwd(),-7)=="/config") if(file_exists($prependdir."data/logo-100.gif")) echo ""; echo "

".i18n($config['fairname'])."

"; + +echo "
"; +if(isset($_SESSION['users_type'])) { + $types = array('volunteer' => 'Volunteer', 'judge' => 'Judge', + 'student'=>'Participant','committee'=>'Committee Member', + 'region'=>'Region'); + if($_SESSION['users_type'] != false) { + echo i18n($types[$_SESSION['users_type']]); + } + echo " {$_SESSION['email']}: "; + echo "[Logout]"; +} else if(isset($_SESSION['email'])) { + /* Backwards compatible login settings */ + /* Check for committee */ + if(isset($_SESSION['committee_member_id'])) { + echo i18n('Committee Member'); + echo " {$_SESSION['email']}: "; + echo "[Logout]"; + } else if(isset($_SESSION['judges_id'])) { + echo i18n('Judge'); + echo " {$_SESSION['email']}: "; + echo "[Logout]"; + } else if(isset($_SESSION['registration_id'])) { + echo i18n('Participant'); + echo " {$_SESSION['email']}: "; + echo "[Logout]"; + } else { + echo " "; + } + +} else { + echo i18n('Not Logged In'); +} +echo "
"; ?>
diff --git a/sfiab.css b/sfiab.css index 9487bdfb..33d989e1 100644 --- a/sfiab.css +++ b/sfiab.css @@ -79,6 +79,7 @@ h1 { font-size: 2.0em; font-weight: bold; margin-top: 0; + margin-bottom: 0; } h2 { font-size: 1.6em; @@ -268,3 +269,8 @@ a.caution:hover { vertical-align: baseline; } +hr { + margin-top: 2px; +} + +