34 lines
715 B
PHP
34 lines
715 B
PHP
<?php
|
|
$PAGE_NAME = "Open requests";
|
|
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>Open requests</h1>
|
|
<p class="lead text-muted">
|
|
Here you can find all of your requests, and other requests that you are subscribed to.
|
|
</p>
|
|
</div>
|
|
</section>
|
|
|
|
<section>
|
|
<p>This page is currently under construction.</p>
|
|
</section>
|
|
|
|
</main>
|
|
|
|
<?php
|
|
require_once __DIR__ . "/../includes/footer.php";
|
|
?>
|