/[projects]/misc/horsensspejder-web/header.php
ViewVC logotype

Contents of /misc/horsensspejder-web/header.php

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2125 - (show annotations) (download)
Wed Mar 12 19:30:05 2014 UTC (10 years, 2 months ago) by torben
File size: 2452 byte(s)
initial import
1 <?php
2 header("Cache-Control: no-cache, must-revalidate"); // HTTP/1.1
3 header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); // Date in the past
4
5 session_start();
6 if ($_SESSION["login"] != 1) {
7 header("Location: index.php");
8 exit();
9 }
10
11 header("Content-Type: text/html; charset=iso-8859-1");
12
13 ?>
14 <html>
15 <head>
16 <title>De gr&oslash;nne spejdere i Horsens - kommunikation</title>
17 <script type="text/javascript" src="jquery/jquery-ui-1.10.3/jquery-1.9.1.js"></script>
18 <script type="text/javascript" src="jquery/jquery.ui.widget.min.js"></script>
19 <!-- <script type="text/javascript" src="jquery/jquery-picklist.min.js"></script>-->
20 <script type="text/javascript" src="jquery/DataTables-1.9.4/media/js/jquery.dataTables.min.js"></script>
21 <script type="text/javascript" src="jquery/chosen_v1.0.0/chosen.jquery.min.js"></script>
22
23 <!-- <link rel="stylesheet" type="text/css" href="jquery/jquery-picklist.css">
24 <link rel="stylesheet" type="text/css" href="jquery/jquery/jquery-picklist-ie7.css">-->
25 <link rel="stylesheet" type="text/css" href="jquery/chosen_v1.0.0/chosen.css">
26
27 <style>
28
29 a {
30 color: black;
31 }
32
33 .pickList_list {
34 width: 300px;
35 height: 120px;
36 }
37
38 .pickList_controlsContainer {
39 width: 40px;
40 margin-top: 20px;
41 }
42
43 #menu {
44 position: fixed;
45 left: 20px;
46 top: 80px;
47 width: 150px;
48 background: #004B19 ;
49 color: #ffffff;
50 padding: 10px;
51 z-index: 10;
52 }
53
54 #logo {
55 position: fixed;
56 left: 10px;
57 top: 30px;
58 }
59
60 #main {
61 position: absolute;
62 left: 210px;
63 /* margin-left: 200px;*/
64
65 top: 90px;
66 }
67
68 a.menu {
69 color: #ffffff;
70 }
71
72 .even {
73 background: #B1FEAA;
74 }
75
76 .odd{
77 background: #F0F0F0;
78 }
79
80 .chosen-container-multi .chosen-choices li.search-field input[type="text"] {
81 height: 25px;
82 }
83
84 </style>
85 </head>
86 <body bgcolor="white">
87
88 <a href="start.php"><img src="gfx/dgs-logo.png" id="logo" border="0"></a>
89
90 <div id="menu">
91 <br>
92 <b>Kommunikation:</b><br>
93 <a href="nybesked.php" class="menu">Ny mail/sms</a><br>
94 <a href="simpelsms.php" class="menu">Simpel sms</a><br>
95
96 <a href="inbox.php" class="menu">SMS Indbakke</a><br>
97
98 <a href="smsjobs.php" class="menu">SMS Jobs</a><br>
99 <a href="outbox.php" class="menu">SMS Udbakke</a><br>
100
101 <br>
102 <b>Stamdata:</b><br>
103 <a href="enheder.php" class="menu">Enheder</a><br>
104 <a href="personer.php" class="menu">Personer</a><br>
105 <a href="mangler.php" class="menu">Mangler data</a><br>
106
107 <br>
108 <a href="admin.php" class="menu">Administration</a><br>
109 <br>
110 <a href="logout.php" class="menu">Logout</a><br>
111
112 </div>
113
114 <div id="main">

  ViewVC Help
Powered by ViewVC 1.1.20