Initial commit
This commit is contained in:
commit
0d798846b0
26 changed files with 1499 additions and 0 deletions
24
admin/index.php
Executable file
24
admin/index.php
Executable file
|
|
@ -0,0 +1,24 @@
|
|||
<?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>
|
||||
Loading…
Reference in a new issue