-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtop2.php
53 lines (37 loc) · 1.65 KB
/
top2.php
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
<?php
include("db.php");
?>
<!DOCTYPE html>
<html>
<!-- Hele Top2.php står for designet af hjemmesiden, samt menu'en -->
<head>
<title>DIKUlan PLAYGROUND</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link rel="stylesheet" type="text/css" href="MainCSS.css" />
</head>
<body>
<div id="header-wrap">
<div id="twitterLogo">
<a href=<?php echo($page) ?> > <img src="images/twitter.png" width="31" height="30"></a>
</div>
<div id="facebookLogo">
<a href="https://www.facebook.com/events/1424545007805387/?fref=ts" target="_blank"> <img src="images/facebook.png" width="31" height="30"></a>
</div>
<div id="facebookLogo">
<form action="logout.php" method="post">
<input type="submit" name="Submit" value="Logout">
</form>
</div>
<header>
<a href="index.php"> <img src="images/DIKULAN9.png"> </a>
</header>
<div id="menu">
<div id="menuText2">
<a <?php if ($page=='adminindex.php') echo 'class="current"'; ?> href="adminindex.php">Ret forside</a>
<a <?php if ($page=='admingalleri.php') echo 'class="current"'; ?> href="admingalleri.php">Ret galleri</a>
<a <?php if ($page=='adminbordreservation.php') echo 'class="current"'; ?> href="adminbordreservation.php">Ret bordreservation</a>
<a <?php if ($page=='adminvagtplan.php') echo 'class="current"'; ?> href="adminvagtplan.php">Ret vagtplan</a>
<a <?php if ($page=='adminturnering.php') echo 'class="current"'; ?> href="adminturnering.php">Ret turneringer</a>
</div>
</div>
</div>