mailwolt/resources/views/layouts/webmail-login.blade.php

56 lines
2.8 KiB
PHP

<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{{ $title ?? 'Webmail' }} · {{ config('app.name') }}</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Syne:wght@700;800&display=swap" rel="stylesheet">
@vite(['resources/css/app.css'])
@livewireStyles
</head>
<body style="margin:0;min-height:100dvh;background:var(--mw-bg);color:var(--mw-t1);
font-family:-apple-system,BlinkMacSystemFont,'Inter','Segoe UI',sans-serif;
font-size:13.5px;-webkit-font-smoothing:antialiased;
display:flex;align-items:center;justify-content:center;padding:24px;box-sizing:border-box;">
<div style="width:100%;max-width:380px;">
{{-- Brand --}}
<div style="text-align:center;margin-bottom:28px;">
<div style="display:inline-flex;align-items:center;justify-content:center;
width:48px;height:48px;border-radius:13px;
background:linear-gradient(135deg,#6366f1 0%,#4338ca 100%);
margin-bottom:14px;box-shadow:0 0 20px rgba(99,102,241,.35);">
<svg width="28" height="28" viewBox="0 0 28 28" fill="none">
<path d="M5 19 C5 19 8 10 15 9 C19 8 23 11 24 15" stroke="white" stroke-width="2.2" stroke-linecap="round" fill="none"/>
<path d="M15 9 C15 9 12 5 8 5 C9.5 7 10 9 11 10" stroke="white" stroke-width="1.8" stroke-linecap="round" fill="none"/>
<path d="M24 15 C24 15 27 13 28 10 C26 11 24 12 23 13.5" stroke="white" stroke-width="1.8" stroke-linecap="round" fill="none"/>
<circle cx="19" cy="8" r="1.5" fill="white" opacity=".95"/>
<path d="M5 19 C6.5 22 9 23.5 12 23.5 C15 23.5 18 22 19.5 19" stroke="white" stroke-width="2.2" stroke-linecap="round" fill="none"/>
</svg>
</div>
<div style="font-family:'Syne',sans-serif;font-size:24px;font-weight:800;letter-spacing:-.3px;line-height:1;margin-bottom:4px">
<span style="color:#e8eaf6">Clu</span><span style="color:#6366f1">Bird</span>
</div>
<div style="font-size:11px;color:var(--mw-t4);margin-top:5px;">Webmail</div>
</div>
{{-- Card --}}
<div style="background:var(--mw-bg2);border:1px solid var(--mw-b1);border-radius:12px;padding:28px;">
{{ $slot }}
</div>
{{-- Footer --}}
<div style="text-align:center;margin-top:20px;font-size:11.5px;color:var(--mw-t5);">
&copy; {{ date('Y') }} {{ config('app.name') }}
</div>
</div>
@vite(['resources/js/app-webmail.js'])
@livewireScripts
</body>
</html>