Spaces:
Sleeping
Sleeping
File size: 848 Bytes
10dc6f2 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | <!DOCTYPE html>
<html lang="id">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{{ $title ?? 'Login' }} — Eventify</title>
@vite(['resources/css/app.css', 'resources/js/app.js'])
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap" rel="stylesheet">
<style>* { font-family: 'Inter', sans-serif; }</style>
</head>
<body class="bg-slate-950 text-white min-h-screen flex items-center justify-center">
<div class="w-full max-w-md px-6">
<div class="text-center mb-8">
<a href="{{ route('home') }}" class="text-2xl font-bold">🎫 Eventify</a>
</div>
<div class="bg-white/5 border border-white/10 rounded-2xl p-8">
{{ $slot }}
</div>
</div>
</body>
</html>
|