menu.php
1.38 KB
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
63
64
65
66
67
68
69
70
<?php
session_start();
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Tenzing Communications Inc.</title>
<script src="https://apis.google.com/js/platform.js" async defer></script>
<style type="text/css">
body, h1 {
margin: 0;
padding: 0;
background-color: #3B0D32;
color: #FFF;
font: 11px/120% 'Trebuchet MS', Verdana, Arial, sans-serif;
}
h1 {
font-size: 14px;
font-weight: bold;
padding: 0 0 2px 0;
}
select { font: 11px/120% 'Trebuchet MS', Verdana, Arial, sans-serif; }
label {
font-weight: bold;
vertical-align: 25%;
}
.TzMenu {
float: left;
margin: 15px;
height: 65px;
}
ul.TzMenu {
list-style: none;
padding-left: 0;
}
#TzLogo {
float: right;
width: 259px;
}
#submit { margin-left: 6px; }
dd { margin-left: 0; }
</style>
<script type="text/javascript" src="addEvent.js"></script>
</head>
<body>
<?php
if (isset($_SESSION['username'])) {
include('includes/loggedin.php');
} else {
include('includes/auth.php');
}
?>
<div id="TzLogo">
<img src="tenzing.gif" width="259" height="75" alt="Tenzing" />
</div>
</body>
</html>