bcns-gameDistributionSystem/bcnsGDSSite/templates/error.html
odecif 631dc761c6 Major overhaul
* Now using Blueprints instead of importing modules.
* Now using def create_app instead of just app
2023-11-18 02:52:39 +01:00

18 lines
363 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>BCNS</title>
</head>
<body>
{% extends "navigation.html" %}
{% block content %}
<h1>{{lang_error_body_header}}</h1>
{% if error_object %}
<p class="error">Something went wrong</p>
<p>{{error_object.error_type}}</p>
<p>{{error_object.error_message}}</p>
{% endif %}
{% endblock %}
</body>
</html>