catask/templates/errors/base.html
2024-12-16 16:50:24 +03:00

9 lines
429 B
HTML

{% extends 'base.html' %}
{% block title %}{{ error_title }}{% endblock %}
{% block content %}
<div class="mx-auto mb-5 pb-5">
<h1 class="mt-5 pt-5 text-center display-1 text-body-secondary">{{ error_code }}</h1>
<h2 class="text-center fw-normal">{{ error_title }}</h2>
<p class="lead text-center">{{ error_description }}<br><br><a class="btn btn-primary px-5" href="{{ url_for('index') }}">Home</a></p>
</div>
{% endblock %}