Add error page

This commit is contained in:
2024-02-26 19:51:07 +01:00
parent 3949ad8f04
commit 2a8c17633e
3 changed files with 36 additions and 2 deletions

View File

@ -0,0 +1,14 @@
{% extends 'base.jinja' %}
{% block title %}Formula 10 - Error{% endblock title %}
{% set active_page = "/error" %}
{% block body %}
<div class="card">
<div class="card-body">
<h5 class="card-title text-danger fw-bold">Error</h5>
<h6 class="card-subtitle">{{ error_message }}</h6>
</div>
</div>
{% endblock body %}