Files
delegate-auth/resources/views/errors/401.blade.php
T
2026-05-27 11:11:51 +02:00

60 lines
1.5 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>401 Accès non autorisé</title>
<style>
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
font-family: ui-sans-serif, system-ui, sans-serif;
background: #f8fafc;
color: #1e293b;
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
}
.card {
background: #fff;
border: 1px solid #e2e8f0;
border-radius: 12px;
padding: 2.5rem 3rem;
max-width: 420px;
width: 100%;
text-align: center;
box-shadow: 0 4px 24px rgba(0,0,0,.06);
}
.code {
font-size: 4rem;
font-weight: 700;
color: #e11d48;
line-height: 1;
margin-bottom: .5rem;
}
h1 {
font-size: 1.25rem;
font-weight: 600;
margin-bottom: .75rem;
}
p {
font-size: .95rem;
color: #64748b;
line-height: 1.6;
}
</style>
</head>
<body>
<div class="card">
<div class="code">401</div>
<h1>Accès non autorisé</h1>
<p>{{ $exception->getMessage() ?: 'Vous n\'êtes pas autorisé à accéder à cette ressource.' }}</p>
</div>
</body>
</html>