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:
parent
8d38a092d8
commit
9979178fd5
1 changed files with 9 additions and 3 deletions
|
|
@ -7,8 +7,14 @@
|
||||||
<link rel="stylesheet" href="/css/app.css">
|
<link rel="stylesheet" href="/css/app.css">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<h1>403 Forbidden</h1>
|
<main class="auth-shell">
|
||||||
<p>You do not have permission to access this page.</p>
|
<div class="auth-card stack text-center">
|
||||||
<a href="/home">Back to Home</a>
|
<h1>403 Forbidden</h1>
|
||||||
|
<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>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue