47 lines
2.0 KiB
PHP
47 lines
2.0 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>
|
|
@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:52px;height:52px;border-radius:14px;background:var(--mw-v);
|
|
margin-bottom:14px;box-shadow:0 4px 18px rgba(109,40,217,.25);">
|
|
<svg width="22" height="22" viewBox="0 0 14 14" fill="none">
|
|
<rect x=".5" y="2.5" width="13" height="9" rx="1.5" stroke="white" stroke-width="1.3"/>
|
|
<path d="M.5 5l6.5 4 6.5-4" stroke="white" stroke-width="1.3" stroke-linecap="round"/>
|
|
</svg>
|
|
</div>
|
|
<div style="font-size:20px;font-weight:700;letter-spacing:-.3px;color:var(--mw-t1);">Webmail</div>
|
|
<div style="font-size:12px;color:var(--mw-t4);margin-top:3px;">{{ config('app.name') }}</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);">
|
|
© {{ date('Y') }} {{ config('app.name') }}
|
|
</div>
|
|
|
|
</div>
|
|
|
|
@vite(['resources/js/app-webmail.js'])
|
|
@livewireScripts
|
|
</body>
|
|
</html>
|