24 lines
No EOL
1.2 KiB
PHP
24 lines
No EOL
1.2 KiB
PHP
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title><?php echo $config->name; ?> Administration</title>
|
|
<link href="style.css" rel="stylesheet" type="text/css" />
|
|
</head>
|
|
<body>
|
|
<center>
|
|
<h1><?php echo $config->name; ?> Control Panel</h1>
|
|
<h4>
|
|
<?php
|
|
$request = substr($_SERVER["REQUEST_URI"], strrpos($_SERVER["REQUEST_URI"], "/")+1);
|
|
$request = strtolower(substr($request, 0, strrpos($request, ".")));
|
|
|
|
if(!checkIfLoggedIn()) header("Location: index.php?err=Session invalid.");
|
|
?>
|
|
<?php if($request == "" || $request == "index") { ?>Home<?php } else { ?><a href="index.php">Home</a><?php } ?> |
|
|
<?php if($request == "config") { ?>Configuration<?php } else { ?><a href="config.php">Configuration</a><?php } ?> |
|
|
<?php if($request == "resp") { ?>Responses<?php } else { ?><a href="resp.php">Responses</a><?php } ?> |
|
|
<?php if($request == "auto") { ?>Autonomous<?php } else { ?><a href="auto.php">Autonomous</a><?php } ?> |
|
|
<?php if($request == "admin") { ?>Admin Accounts<?php } else { ?><a href="admin.php">Admin Accounts</a><?php } ?> |
|
|
<a href="jews.php">Logout</a>
|
|
</h4>
|
|
</center>
|