diff options
| author | root | 2014-04-14 08:35:13 +0200 |
|---|---|---|
| committer | root | 2014-04-14 08:35:13 +0200 |
| commit | 12734da8826299ffd24c0a15f6dbf205892d7221 (patch) | |
| tree | 3b894dd30e332df23a564ce44e42ce164c8abd78 /www/static/header.php | |
| parent | 7b9d516cd3bcdb8eaa5f1eb533d71010061c681b (diff) | |
| download | jungegemeinde-12734da8826299ffd24c0a15f6dbf205892d7221.tar.gz | |
Pushed to v3
Diffstat (limited to 'www/static/header.php')
| -rw-r--r-- | www/static/header.php | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/www/static/header.php b/www/static/header.php new file mode 100644 index 0000000..33a6a7d --- /dev/null +++ b/www/static/header.php @@ -0,0 +1,62 @@ +<?php + +/* Copyright Maximilian Möhring, 2013 +Licensed under the GPL. Read LICENSE for more Information.*/ + + +if ($_SESSION["username"] == "jg-adlershof"){ + $account ="<td><a href='member_login.php'>Login</a></td> + <td>|</td> + <td><a href='/register'>Register</a></td> + <td>|</td> +" ; +} else { + $account ="<td><a href='/account'>Account</a></td> + <td>|</td> +"; +} + +?> +<!doctype html> + +<html> +<head> + <title>Junge Gemeinde Adlershof.</title> + <meta http-equiv='Content-type' content='text/html; charset=utf-8' /> + <link rel='stylesheet' type='text/css' href='/static/hyperstyle.css' /> + <link rel='shortcut icon' href='/favicon.ico' type='image/x-icon'> +</head> + +<body link='#000000' vlink='#000000' alink='#FF0000'> + +<?php //include("piwik.php");?> + +<div class='kleineschrif'> + +<div id='header' class='kleineschrift'> + <table width='700px'><tr> + <td><a href='/Startseite'>Home</a></td> + <td>|</td> + <td><a href='/liste'>Adressliste</a></td> + <td>|</td> +<?php /* <td><a href='/help'>Kalender</a></td> + <td>|</td> + <td><a href='/help'>Share</a></td> + <td>|</td> +*/ ?> + <td><a href='/quote'>Zitat</a></td> + <td>|</td> + <td><a href='/to-do-list.html'>to-do</a></td> + <td>|</td> + <td><a href='/help'>Hilfe</a></td> + <td>|</td> +<?php echo " $account"; ?> + <td><a href='/services'>Services</a></td> + <td>|</td> + <td><a href='/logout'>Logout</a></td> + <tr></table> + + <br> + <hr> +</div> + |
