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
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<title>ZNC - <?VAR Title ESC=HTML?></title>
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" type="text/css" href="/css/main.css" />
</head>
<body>
<div id="wrapper">
<div id="banner">
<h2><?VAR Title ESC=HTML?></h2>
<div id="ident"><?VAR SessionUser ESC=HTML?>@<?VAR SessionIP ESC=HTML?></div>
</div>
<div id="gnav">
<div id="nav">
<ul id="menu">
<li<? IF Action == "home" ?> class="on"<? ENDIF ?>><a href="/home">Home</a></li>
<? IF IsAdmin ?>
<li<? IF Action == "settings" ?> class="on"<? ENDIF ?>><a href="/settings">Settings</a></li>
<li<? IF Action == "adduser" ?> class="on"<? ENDIF ?>><a href="/adduser">Add User</a></li>
<li<? IF Action == "listusers" || Action == "edituser" ?> class="on"<? ENDIF ?>><a href="/listusers">Edit Users</a></li>
<? ELSE ?>
<li<? IF Action == "edituser" ?> class="on"<? ENDIF ?>><a href="/edituser">My Settings</a></li>
<? ENDIF ?>
<li<? IF Action == "switchuser" ?> class="on"<? ENDIF ?>><a href="/switchuser">Switch User</a></li>
</ul>
</div>
</div>
<div id="main">
|