19 lines
468 B
PHP
19 lines
468 B
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<?php include $_SERVER['DOCUMENT_ROOT']."/snippets/head.php" ?>
|
|
<body>
|
|
<?php include $_SERVER['DOCUMENT_ROOT']."/snippets/header.php" ?>
|
|
|
|
<div class="container">
|
|
<div class="content flex-vertical">
|
|
<div class="section-one">
|
|
<h1>Unauthorized</h1>
|
|
<p>Maybe you had the wrong code?</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<?php include $_SERVER['DOCUMENT_ROOT']."/snippets/footer.php" ?>
|
|
</body>
|
|
</html>
|