blob: 615aac3af0dde28fd96425d1c8f995839bf236d1 (
plain) (
tree)
|
|
<?php
session_start();
if(!isset($_SESSION["loggedin"]) || $_SESSION["loggedin"] !== true){
header("location: /login.php");
exit;
}
$username = $_SESSION["username"];
$type = $_SESSION["type"];
require_once "config.php";
?>
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href="/style.css">
<title>ARFNET CSTIMS</title>
</head>
<body>
<header><a href="https://arf20.com/">
<img src="arfnet_logo.png" width="64"><span class="title"><strong>ARFNET</strong></span>
</a></header>
<hr>
<main>
<div class="row">
<div class="col8">
<h2>ARFNET Client Service Ticket and Invoice Management System</h2>
<h3><?php echo strtoupper($type[0]).substr($type, 1); ?> panel</h3>
<div class="row">
<div class="col5">
<h3>Active services</h3>
<!-- TODO PHP list of services -->
</div>
<div class="col5">
<h3>Tickets</h3>
<!-- TODO PHP list of services -->
</div>
</div>
</div>
<div class="col2">
<h3>Logged as <?php echo $username; ?></h3>
<h3><a href="/logout.php">Logout</h2>
<h3><a href="/order.php">Order a new service</h2>
<h3><a href="/openticket.php">Open ticket</h2>
</div>
</div>
</main>
</body>
</html>
|