2021-04-06 00:49:09 +01:00
|
|
|
{% extends 'base.html' %}
|
2021-04-17 23:59:11 +01:00
|
|
|
|
2021-04-06 00:49:09 +01:00
|
|
|
{% block title %}Website Error - {% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
|
|
|
|
<div class='middle'>
|
|
|
|
<h2>Website Error</h2>
|
|
|
|
</div>
|
2021-04-17 23:59:11 +01:00
|
|
|
|
2021-04-17 21:24:37 +01:00
|
|
|
|
2021-04-06 00:49:09 +01:00
|
|
|
<div style='width: 300px;' class='middle3 login'>
|
|
|
|
<div class='align-center'>
|
|
|
|
<div class='space'></div>
|
|
|
|
<div class='align-center'>
|
|
|
|
<h3>There has been an error.</h3>
|
2021-04-20 22:58:41 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
{% if message %}
|
|
|
|
{{message}}
|
|
|
|
{% else %}
|
|
|
|
<p>We are terribly sorry but an unknown fault has occurred. </p>
|
|
|
|
|
|
|
|
{% endif %})
|
2021-04-06 00:49:09 +01:00
|
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
{% endblock %}
|