summaryrefslogtreecommitdiffstats
path: root/templates/errors/generic.html
blob: 19bed466b62b1ca18e37c7f092850761e8cff73c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{% extends 'base.html' %}

{% block title %}Website Error - {% endblock %}
{% block content %}

<div class='middle'>
	<h2>Website Error</h2>
</div>

    
<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>
        
        
        
        {% if message %}
            {{message}}
        {% else %}
            <p>We are terribly sorry but an unknown fault has occurred. </p>
        
        {% endif %})


	</div>
</div>
</div>





{% endblock %}