28 lines
No EOL
1.5 KiB
PHP
28 lines
No EOL
1.5 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Admin | <?= htmlspecialchars(Config::get('APP_NAME', 'PhilCore')) ?></title>
|
|
<script src="https://cdn.tailwindcss.com"></script>
|
|
<link href="https://fonts.googleapis.com/css2?family=Fira+Code&display=swap" rel="stylesheet">
|
|
<style>
|
|
.bg-grid-admin {
|
|
background-size: 40px 40px;
|
|
background-image: linear-gradient(to right, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
|
|
linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
|
|
}
|
|
</style>
|
|
</head>
|
|
<body class="bg-[#0b1120] text-slate-300 min-h-screen bg-grid-admin font-sans">
|
|
<header class="p-4 border-b border-slate-800 bg-slate-900/50 backdrop-blur-md sticky top-0 z-50">
|
|
<div class="container mx-auto flex justify-between items-center">
|
|
<div class="flex items-center gap-2 text-emerald-400 font-bold">
|
|
🍕 <span class="tracking-tight"><?= htmlspecialchars(Config::get('APP_NAME', 'PhilCore')) ?></span>
|
|
<span class="text-slate-600 ml-2 text-xs font-mono">/ Admin</span>
|
|
</div>
|
|
<a href="<?= Config::get('BASE_URL', '/') ?>" class="text-xs font-mono text-slate-500 hover:text-emerald-400 transition-colors">Home</a>
|
|
</div>
|
|
</header>
|
|
<?php Flash::display(); ?>
|
|
<main class="p-6 md:p-12">
|