mirror of
https://github.com/rjNemo/auth
synced 2026-06-06 00:16:40 +00:00
22 lines
571 B
HTML
22 lines
571 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<title>Unauthorized</title>
|
|
<link
|
|
rel="stylesheet"
|
|
href="https://cdn.jsdelivr.net/npm/@picocss/pico@2/css/pico.min.css"
|
|
/>
|
|
</head>
|
|
<body>
|
|
<main class="container">
|
|
<h1>Unauthorized</h1>
|
|
<p>
|
|
{{if .Error}}{{.Error}}{{else}}You do not have permission to view that
|
|
page.{{end}}
|
|
</p>
|
|
<a href="/" role="button">Back to safety</a>
|
|
</main>
|
|
</body>
|
|
</html>
|