samey/templates/pages/unauthorized.html

14 lines
307 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<title>Unauthorized</title>
{% include "fragments/common_headers.html" %}
</head>
<body>
<div><a href="/">&lt; To home</a></div>
<main>
<h1>Unauthorized</h1>
<p>The provided credentials are invalid.</p>
</main>
</body>
</html>