39564-vm/admin.php
2026-04-12 03:40:40 +00:00

44 lines
1.9 KiB
PHP

<?php
declare(strict_types=1);
require_once __DIR__ . '/app/bootstrap.php';
http_response_code(404);
$meta = diagnostic_meta('Nie znaleziono strony', 'Ten adres panelu administracyjnego nie jest aktywny.');
?>
<!doctype html>
<html lang="pl">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title><?= htmlspecialchars($meta['title']) ?></title>
<meta name="description" content="<?= htmlspecialchars($meta['description']) ?>">
<meta name="robots" content="noindex, nofollow">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="/assets/css/custom.css?v=<?= urlencode((string)@filemtime(__DIR__ . '/assets/css/custom.css')) ?>">
</head>
<body class="app-shell">
<header class="site-header border-bottom sticky-top">
<nav class="navbar navbar-expand-lg navbar-light py-3">
<div class="container">
<?= diagnostic_brand_logo_anchor('navbar-brand doctor-biznes-logo-link--nav') ?>
<div class="d-flex align-items-center gap-2 ms-auto">
<a class="btn btn-sm btn-dark" href="/">Strona główna</a>
</div>
</div>
</nav>
</header>
<main class="py-5">
<div class="container">
<section class="empty-state text-center py-5 px-4">
<div class="eyebrow mb-3">404</div>
<h1 class="page-title mb-3">Nie znaleziono strony</h1>
<p class="text-secondary mb-4">Ten adres panelu administracyjnego nie jest aktywny.</p>
<a class="btn btn-dark" href="/">Wróć na stronę główną</a>
</section>
</div>
</main>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js" defer></script>
<script src="/assets/js/main.js?v=<?= urlencode((string)@filemtime(__DIR__ . '/assets/js/main.js')) ?>" defer></script>
</body>
</html>