root/EMS/header.php

Revision 2, 2.3 kB (checked in by evilbunny, 2 years ago)

Initial import

Line 
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2 <html xmlns="http://www.w3.org/1999/xhtml">
3 <head>
4     <meta name="author" content="FreeAuth (www.freeauth.org)" />
5     <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
6     <link rel="stylesheet" href="images/style.css" type="text/css" />
7     <title>FreeAuth.org EMS</title>
8 </head>
9 <body>
10     <div id="page" align="center">
11         <div id="toppage" align="center">
12             <div id="date">
13                 <div class="smalltext" style="padding:13px;"><strong><?=date("D jS M Y")?></strong></div>
14             </div>
15             <div id="topbar">
16                 <div align="right" style="padding:12px;" class="smallwhitetext"><a href="#">Home</a> | <a href="#">Sitemap</a> | <a href="#">Contact Us</a></div>
17             </div>
18         </div>
19         <div id="header" align="center">
20             <div class="titletext" id="logo">
21                 <div class="logotext" style="margin:5px;"><a style="color: #999999;text-decoration:none;" href="index.php"><span class="orangelogotext">Free</span>Auth</a></div>
22             </div>
23             <div id="pagetitle">
24                 <div id="title" class="titletext" align="right">Enterprise Management System</div>
25             </div>
26         </div>
27         <div id="content" align="center">
28             <div id="menu" align="right">
29                 <div align="right" style="width:189px; height:8px;"><img src="images/mnu_topshadow.gif" width="189" height="8" alt="mnutopshadow" /></div>
30                 <div id="linksmenu" align="center">
31 <? if($_SESSION['_config']['access'] >= 90) { ?>
32                     <a href="admin.php" title="Home">Home</a>
33                     <a href="newuser.php" title="New User">New User</a>
34                     <a href="users.php" title="Users">Users</a>
35                     <a href="newrealm.php" title="New Realm">New Realm</a>
36                     <a href="realms.php" title="Realms">Realms</a>
37                     <a href="logout.php" title="Logout">Logout</a>
38 <? } else if($_SESSION['_config']['access'] > 0) { ?>
39                     <a href="home.php" title="Home">Home</a>
40                     <a href="aliases.php" title="Aliases">My Aliases</a>
41                     <a href="logout.php" title="Logout">Logout</a>
42 <? } else { ?>
43                     <a href="index.php" title="Home">Home</a>
44                     <a href="login.php" title="Login">Login</a>
45 <? } ?>
46                 </div>
47                 <div align="right" style="width:189px; height:8px;"><img src="images/mnu_bottomshadow.gif" width="189" height="8" alt="mnubottomshadow" /></div>
48             </div>
49         <div id="contenttext">
50
Note: See TracBrowser for help on using the browser.