-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathnavigation.php
More file actions
28 lines (27 loc) · 840 Bytes
/
navigation.php
File metadata and controls
28 lines (27 loc) · 840 Bytes
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
<?php
require_once("_class.dba.inc.php");
require_once("_conf.dba.inc.php");
require_once("_static.session.inc.php");
validate_session();
?>
<!doctype html public "-//W3C//DTD HTML 4.0 //EN">
<html>
<head>
<title>Navigation</title>
<META HTTP-EQUIV="Pragma" CONTENT="no-cache">
<link type="text/css" href="default.css" rel="stylesheet"/>
<base target="detail">
</head>
<body class="nav" text="#000000" link="#0000A0" vlink="#0000A0" alink="#0000A0">
<div class="nav">
<a href="accounts/list.php" target="detail">Mail Accounts</a><br />
<?php if ($_SESSION [ 'admin' ]) { ?>
<a href="domains/list.php" target="detail">Domains</a><br />
<a href="hosts/list.php" target="detail">Admins</a><br />
<?php } ?>
<br />
<br />
<a href="logout.php" target="_top">Logout</a>
</div>
</body>
</html>