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.
20 lines
574 B
PHP
20 lines
574 B
PHP
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>Daily Goals - Forbidden</title>
|
|
<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 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>
|