quartznet-info/admin/index.php
2020-01-31 06:17:49 -05:00

25 lines
597 B
PHP
Executable File

<?php require_once("./auth.php"); auth(); ?>
<!DOCTYPE html>
<html lang="en">
<title>Quartznet | Admin</title>
<?php include "../includes/head.php" ?>
<?php include "../includes/header.php" ?>
<main class="container">
<section>
<h1>Admin area</h1>
<a class="link" href="/quartznet/admin/logout.php">Logout</a>
<br>
<a class="link" href="/quartznet/admin/users.php">Users</a>
<br>
<p>For admins of quartznet. Ignore the fire. Everything is fine now! :) </p>
<img src="../assets/friendscats1.png" alt="cats">
</section>
</main>
<?php include "../includes/footer.php" ?>
</html>