mirror of https://github.com/itflow-org/itflow
18 lines
368 B
PHP
18 lines
368 B
PHP
<?php
|
|
/*
|
|
* Client Portal
|
|
* Landing / Home page for the client portal
|
|
*/
|
|
|
|
header("Content-Security-Policy: default-src 'self' fonts.googleapis.com fonts.gstatic.com");
|
|
|
|
require_once "inc_portal.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 "portal_footer.php"; ?>
|