|
|
@@ -19,6 +19,8 @@ class Design {
|
|
19
|
19
|
die("You are not authorized to view this page.");
|
|
20
|
20
|
}
|
|
21
|
21
|
}
|
|
|
22
|
+ if (isset($_SESSION['username'])) { $username = $_SESSION['username']; }
|
|
|
23
|
+
|
|
22
|
24
|
echo '<!DOCTYPE html>
|
|
23
|
25
|
<!--
|
|
24
|
26
|
Made by DFiNE (Kenneth Hedahl)
|
|
|
@@ -46,11 +48,11 @@ class Design {
|
|
46
|
48
|
<div class="contentwrapper"> <!-- Contentwrapper start -->
|
|
47
|
49
|
<header> <!-- Header start -->
|
|
48
|
50
|
<div class="topnav">
|
|
49
|
|
- <p>Support:</p> <a href="?page=order"><button>Bestil nu</button></a>
|
|
|
51
|
+ ' . (User::userLevel() > 0 ? "<div class=\"pull_left\"><span class=\"white\"> Velkommen tilbage $username!</span></div>" : "") . '<p>Support:</p> <a href="?page=order"><button>Bestil nu</button></a>
|
|
50
|
52
|
</div>
|
|
51
|
53
|
|
|
52
|
54
|
<div class="header">
|
|
53
|
|
- <a href="' . Config::$sys_url . '"><div class="header_logo"> </div></a>
|
|
|
55
|
+ <a href="' . Config::$sys_url . '"><div class="header_logo"></div></a>
|
|
54
|
56
|
<div class="header_right">
|
|
55
|
57
|
<a href="' . Config::$sys_url . '?page=aboutus">Om Odense Track</a> | <a href="' . Config::$sys_url . '?page=contact">Kontakt Os</a>
|
|
56
|
58
|
</div>
|