Files
bot_ticket_r6_elite/internal/panel/templates/auth_layout.html
T
2026-05-10 18:07:51 +02:00

29 lines
1008 B
HTML

{{define "auth_layout"}}
<!DOCTYPE html>
<html lang="fr" class="h-full">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{{block "title" .}}TicketBot Admin{{end}}</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="/static/app.css">
<script>
tailwind.config = {
theme: { extend: { colors: { discord: { bg: '#1e1f22', card: '#2b2d31', accent: '#5865f2', hover: '#404249', border: '#3f4147' } } } }
}
</script>
</head>
<body class="h-full bg-discord-bg text-gray-100 flex items-center justify-center p-4">
<div class="w-full max-w-md">
<div class="text-center mb-8">
<h1 class="text-2xl font-bold text-white">TicketBot</h1>
<p class="text-gray-400 text-sm mt-1">Panel d'administration</p>
</div>
<div class="bg-discord-card rounded-lg shadow-xl p-8 border border-discord-border">
{{block "content" .}}{{end}}
</div>
</div>
</body>
</html>
{{end}}