10 lines
249 B
HTML
10 lines
249 B
HTML
{% extends 'common/_base.html' %}
|
|
|
|
{% block content %}
|
|
<div class="text-center">
|
|
<h1>Bad request</h1>
|
|
<p>Please make sure the form is correctly filled.</p>
|
|
<a href="/" class="link">← Return to the app</a>
|
|
</div>
|
|
{% endblock %}
|