Burathar
3 years ago
5 changed files with 21 additions and 9 deletions
@ -1,8 +1,8 @@ |
|||||||
{% extends "base.html" %} |
{% extends "base_error.html" %} |
||||||
|
|
||||||
{% block app_content %} |
{% block app_content %} |
||||||
<h1>400 Bad Request</h1> |
<h1>400 Bad Request</h1> |
||||||
<p><a href="{{ url_for('index') }}">Back</a></p> |
<p><a id="back" title="Go Back" href="{{ url_for('index') }}">Back</a></p> |
||||||
|
|
||||||
<h2>Error Message:</h2> |
<h2>Error Message:</h2> |
||||||
{{ error }} |
{{ error }} |
||||||
|
@ -1,6 +1,6 @@ |
|||||||
{% extends "base.html" %} |
{% extends "base_error.html" %} |
||||||
|
|
||||||
{% block app_content %} |
{% block app_content %} |
||||||
<h1>401 Unauthorized</h1> |
<h1>401 Unauthorized</h1> |
||||||
<p><a href="{{ url_for('index') }}">Back</a></p> |
<p><a id="back" title="Go Back" href="{{ url_for('index') }}">Back</a></p> |
||||||
{% endblock %} |
{% endblock %} |
||||||
|
@ -1,6 +1,6 @@ |
|||||||
{% extends "base.html" %} |
{% extends "base_error.html" %} |
||||||
|
|
||||||
{% block app_content %} |
{% block app_content %} |
||||||
<h1>404 Page Not Found</h1> |
<h1>404 Page Not Found</h1> |
||||||
<p><a href="{{ url_for('index') }}">Back</a></p> |
<p><a id="back" title="Go Back" href="{{ url_for('index') }}">Back</a></p> |
||||||
{% endblock %} |
{% endblock %} |
@ -1,6 +1,6 @@ |
|||||||
{% extends "base.html" %} |
{% extends "base_error.html" %} |
||||||
|
|
||||||
{% block app_content %} |
{% block app_content %} |
||||||
<h1>500 Internal Server Error</h1> |
<h1>500 Internal Server Error</h1> |
||||||
<p><a href="{{ url_for('index') }}">Back</a></p> |
<p><a id="back" title="Go Back" href="{{ url_for('index') }}">Back</a></p> |
||||||
{% endblock %} |
{% endblock %} |
Loading…
Reference in new issue