Better error pages and clean up dangling tags

This commit is contained in:
Bad Manners 2025-04-21 13:46:35 -03:00
parent 4c1a8a9489
commit e679d167fc
10 changed files with 189 additions and 50 deletions

View file

@ -0,0 +1,14 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>Bad request</title>
{% include "fragments/common_headers.html" %}
</head>
<body>
<div><a href="/">&lt; To home</a></div>
<main>
<h1>Bad request</h1>
<p>The provided parameters are invalid: {{ error }}</p>
</main>
</body>
</html>