rDrama/files/templates/errors/400.html

21 lines
545 B
HTML
Raw Normal View History

2021-10-15 14:08:27 +00:00
{% extends "default.html" %}
{% block title %}
<title>400 Bad Request</title>
{% endblock %}
{% block pagetype %}error-400{% endblock %}
{% block content %}
2021-12-14 22:48:37 +00:00
<div class="row justify-content-center">
<div class="col-10 col-md-5">
<div class="text-center px-3 my-8">
2021-12-24 23:00:09 +00:00
<img loading="lazy" src="/static/assets/images/emojis/marseybrainlet.webp?a=3">
2021-12-14 22:48:37 +00:00
<pre></pre>
<h1 class="h5">400 Bad Request</h1>
<p class="text-muted mb-5">That request was bad and you should feel bad.</p>
</div>
2021-10-15 14:08:27 +00:00
</div>
</div>
{% endblock %}