Move portal to client and rename and reorganize some client portal files

This commit is contained in:
johnnyq
2025-01-23 17:12:11 -05:00
parent 70dd3ab5c8
commit 5f76a7989b
31 changed files with 87 additions and 87 deletions

16
client/index.php Normal file
View File

@@ -0,0 +1,16 @@
<?php
/*
* Client Portal
* Landing / Home page for the client portal
*/
header("Content-Security-Policy: default-src 'self'");
require_once "includes/inc_all.php";
?>
<div class="col-md-2 offset-1">
<a href="ticket_add.php" class="btn btn-primary btn-block">New ticket</a>
</div>
<?php require_once "includes/footer.php"; ?>