Initial commit :)
This commit is contained in:
27
public/403.php
Normal file
27
public/403.php
Normal file
@@ -0,0 +1,27 @@
|
||||
<?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>
|
||||
Reference in New Issue
Block a user