37 lines
1.1 KiB
PHP
37 lines
1.1 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<meta name="robots" content="noindex,nofollow">
|
|
<title>{{ __('Vorschau nicht verfügbar') }}</title>
|
|
<style>
|
|
body {
|
|
margin: 0;
|
|
min-height: 100vh;
|
|
display: grid;
|
|
place-items: center;
|
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
|
|
background: #f8fafc;
|
|
color: #0f172a;
|
|
}
|
|
.box {
|
|
max-width: 480px;
|
|
padding: 32px;
|
|
background: #fff;
|
|
border: 1px solid #e2e8f0;
|
|
border-radius: 12px;
|
|
text-align: center;
|
|
box-shadow: 0 1px 3px rgba(0,0,0,0.05);
|
|
}
|
|
h1 { font-size: 20px; margin: 0 0 12px; }
|
|
p { margin: 0; color: #64748b; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="box">
|
|
<h1>{{ __('Vorschau nicht verfügbar') }}</h1>
|
|
<p>{{ $message }}</p>
|
|
</div>
|
|
</body>
|
|
</html>
|