28 lines
783 B
PHP
28 lines
783 B
PHP
<?php
|
|
require_once $_SERVER['DOCUMENT_ROOT'] . '/../vendor/autoload.php';
|
|
|
|
use Dotenv\Dotenv;
|
|
|
|
$dotenv = Dotenv::createImmutable($_SERVER['DOCUMENT_ROOT'] . '/..');
|
|
$dotenv->load();
|
|
?>
|
|
|
|
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width,initial-scale=1">
|
|
<title>403 Forbidden | <?= $_ENV['SITE_NAME'] ?></title>
|
|
<link rel="stylesheet" href="/assets/style.css">
|
|
<meta name="theme-color" content="<?= $_ENV['THEME_COLOR'] ?>" />
|
|
<meta generator='tgirl.city <?= htmlspecialchars($_ENV['VERSION']) ?>'>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<h1>403</h1>
|
|
<p>Hey! You sneaky one, we can have you seeing this</p>
|
|
<a href="/" class="btn">Back to <?= $_ENV['SITE_NAME'] ?>!</a>
|
|
</div>
|
|
</body>
|
|
</html>
|