[FIX] 404 and 500 page not centered

This commit is contained in:
Arnold Dechamps 2024-05-18 02:29:37 +02:00
parent c1e7c3dd58
commit 98a89508d2
No known key found for this signature in database
GPG key ID: AE66543374E41C89
2 changed files with 14 additions and 2 deletions

View file

@ -1,5 +1,11 @@
{% extends "base.html" %}
{% block title %}Error 404{% endblock %}
{% block content %}
<img src="https://http.cat/images/404.jpg">
<div class="grid gap-4">
<div class="row-start-2">
<div class="flex justify-center">
<img src="https://http.cat/images/404.jpg">
</div>
</div>
</div>
{% endblock content %}

View file

@ -1,5 +1,11 @@
{% extends "base.html" %}
{% block title %}Error 404{% endblock %}
{% block content %}
<img src="https://http.cat/images/500.jpg">
<div class="grid gap-4">
<div class="row-start-2">
<div class="flex justify-center">
<img src="https://http.cat/images/500.jpg">
</div>
</div>
</div>
{% endblock content %}