Files
Bratonien-Adventskalender/adventskalender/shared/content/custom_403.php
2025-11-25 21:42:37 +01:00

27 lines
900 B
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<title>403 Zugriff verweigert</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="/shared/css/style.css">
</head>
<body>
<?php include $_SERVER['DOCUMENT_ROOT'] . '/adventskalender/includes/header.html'; ?>
<main style="text-align:center; padding:4rem 1rem;">
<h1>🛑 403 Kein Zutritt</h1>
<p>Hier darf nur das Christkind rein. Oder Duchesse Erna.</p>
<p style="margin-top:2rem;">
<a href="/" class="btn" style="padding:0.75rem 1.5rem; background:#8573fb; color:#fff; border-radius:8px; text-decoration:none;">
🔙 Zurück zum Adventskalender
</a>
</p>
</main>
<?php include $_SERVER['DOCUMENT_ROOT'] . '/adventskalender/includes/footer.html'; ?>
<script src="/shared/js/header.js" defer></script>
</body>
</html>