salvi/templates/badrequest.jinja2

14 lines
375 B
Text
Raw Normal View History

2023-03-16 14:24:29 +01:00
{% extends "base.jinja2" %}
2021-10-17 18:02:29 +02:00
{% block title %}Bad Request - {{ app_name }}{% endblock %}
{% block content %}
2023-12-12 19:29:43 +01:00
<main class="error-page">
<h1 id="firstHeading">Bad request</h1>
2021-10-17 18:02:29 +02:00
2023-12-12 19:29:43 +01:00
<div class="inner-content">
<p>You sent a request the server cant understand. If you entered the URL manually please check your spelling and try again.</p>
</div>
</main>
2021-10-17 18:02:29 +02:00
{% endblock %}