32 lines
No EOL
2 KiB
PHP
32 lines
No EOL
2 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', 'Philipp Urbschat')) ?></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-[#020617] text-slate-300 min-h-screen font-sans selection-pink">
|
|
<header class="px-6 py-4 border-b border-slate-800/80 bg-slate-950/80 backdrop-blur-xl sticky top-0 z-50">
|
|
<div class="max-w-7xl mx-auto flex justify-between items-center">
|
|
<div class="flex items-center gap-3">
|
|
<a href="<?= Config::get('BASE_URL', '/') ?>admin" class="text-xs font-mono font-bold tracking-widest text-slate-200 hover:text-cyan-400 uppercase transition-colors flex items-center gap-2">
|
|
<span class="w-2 h-2 rounded-full bg-cyan-400 animate-pulse"></span>
|
|
philippurbschat.de <span class="text-slate-500 font-normal">/ admin</span>
|
|
</a>
|
|
</div>
|
|
<div class="flex items-center gap-5 text-xs font-mono">
|
|
<a href="<?= Config::get('BASE_URL', '/') ?>admin/users?tab=users" class="text-slate-400 hover:text-cyan-400 transition-colors">Users</a>
|
|
<a href="<?= Config::get('BASE_URL', '/') ?>admin/users?tab=invites" class="text-slate-400 hover:text-cyan-400 transition-colors">Invites</a>
|
|
<a href="<?= Config::get('BASE_URL', '/') ?>" class="text-slate-500 hover:text-emerald-400 transition-colors">← Website</a>
|
|
</div>
|
|
</div>
|
|
</header>
|
|
<?php Flash::display(); ?>
|
|
<main class="p-6 md:p-12">
|