20 lines
498 B
HTML
20 lines
498 B
HTML
{% extends "default.html" %}
|
|
|
|
{% block title %}
|
|
<title>400 Bad Request</title>
|
|
{% endblock %}
|
|
|
|
{% block pagetype %}error-400{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="row justify-content-center">
|
|
<div class="col-10 col-md-5">
|
|
<div class="text-center px-3 my-8">
|
|
<h1>400</h1>
|
|
<h5>Bad Request</h5>
|
|
<p class="text-muted mb-5">That request was bad and you should feel bad</p>
|
|
<div><a href="/" class="btn btn-primary">Go to frontpage</a></div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|