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">
|
||||
</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>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue