aboutsummaryrefslogtreecommitdiff
path: root/www/static/header.php
blob: 33a6a7d86af6b742c2be9bfb7b1463204eedada2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
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>