summaryrefslogtreecommitdiffstats
path: root/src/lib/Server/Hostbase/hostbase/webtemplates/errors.html
blob: d321c529f4d8ebcb7b95ada35fd2b62b4be21cef (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
{% extends "base.html" %}

{% block pagebanner %}
  <div class="header">
      <h2>Search Results</h2>
  </div>
  <br/>
{% endblock %}

{% block sidebar %}
{% include "navbar" %}
{% endblock %}

{% block content %}

{% if failures %}
There were errors in the following fields<br><br>
{% for failure in failures %}

<font color="#FF0000">{{ failure }}</font><br>

{% endfor %}
{% endif %}
<br>
Press the back button on your browser and edit those field(s)

{% endblock %}