Working: Auth, DB, view ticket

Signed-off-by: Luke Tainton <luke@tainton.uk>
This commit is contained in:
2020-08-04 14:19:10 +01:00
parent 184510e097
commit f64b585230
18 changed files with 1367 additions and 1 deletions

33
app/public/new.php Normal file
View File

@@ -0,0 +1,33 @@
<?php
$PAGE_NAME = "New request";
require_once __DIR__ . "/../includes/prereqs.php";
require_once __DIR__ . "/../includes/header.php";
if (!is_signed_in()) {
header('Location: /login');
}
?>
<!-- Begin page content -->
<main role="main" class="flex-shrink-0">
<section class="jumbotron text-center">
<div class="container">
<h1>Create a new request</h1>
<p class="lead text-muted">
Fill in the form below to create a new request. We'll respond to it as soon as we can.
</p>
</div>
</section>
<section>
<p>This page is currently under construction.</p>
</section>
</main>
<?php
require_once __DIR__ . "/../includes/footer.php";
?>