31 lines
No EOL
1.9 KiB
PHP
31 lines
No EOL
1.9 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta name="theme-color" content="#020617">
|
|
<title>Admin | <?= htmlspecialchars(Config::get('APP_NAME', 'PhilCore')) ?></title>
|
|
<link rel="stylesheet" href="/css/app.css">
|
|
<link rel="stylesheet" href="/css/style.css">
|
|
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
|
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
|
|
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
|
|
<link rel="shortcut icon" href="/favicon.ico">
|
|
</head>
|
|
<body class="bg-[#0b1120] text-slate-300 min-h-screen bg-grid-admin font-sans selection-pink">
|
|
<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">
|
|
<a href="<?= Config::get('BASE_URL', '/') ?>admin" class="flex items-center gap-2 hover:text-emerald-300 transition-colors">
|
|
👾 <span class="tracking-tight"><?= htmlspecialchars(Config::get('APP_NAME', 'PhilCore')) ?></span>
|
|
<span class="text-slate-600 ml-1 text-xs font-mono">/ Admin</span>
|
|
</a>
|
|
</div>
|
|
<div class="flex items-center gap-4 text-xs font-mono">
|
|
<a href="<?= Config::get('BASE_URL', '/') ?>admin-tools" class="text-cyan-400 hover:text-cyan-300 transition-colors flex items-center gap-1">🛠️ Admin-Tools</a>
|
|
<a href="<?= Config::get('BASE_URL', '/') ?>" class="text-slate-400 hover:text-emerald-400 transition-colors">← Zurück zur Website</a>
|
|
</div>
|
|
</div>
|
|
</header>
|
|
<?php Flash::display(); ?>
|
|
<main class="p-6 md:p-12">
|