style forbidden page with auth-card layout

reuse the centered auth-card shell for the 403 page so the error
state matches the visual language of the rest of the app, with a
primary back-to-home action.
This commit is contained in:
Yisroel Baum 2026-05-01 11:33:49 +03:00
parent 8d38a092d8
commit 9979178fd5
Signed by: yisroelbaum
GPG key ID: 0FA60884F75520A9

View file

@ -7,8 +7,14 @@
<link rel="stylesheet" href="/css/app.css">
</head>
<body>
<main class="auth-shell">
<div class="auth-card stack text-center">
<h1>403 Forbidden</h1>
<p>You do not have permission to access this page.</p>
<a href="/home">Back to Home</a>
<p class="muted">
You do not have permission to access this page.
</p>
<a class="btn btn-primary" href="/home">Back to Home</a>
</div>
</main>
</body>
</html>