4.21.3
This commit is contained in:
10
app/templates/error/400.html
Normal file
10
app/templates/error/400.html
Normal file
@ -0,0 +1,10 @@
|
||||
{% extends "error.html" %}
|
||||
|
||||
{% block error_name %}400{% endblock %}
|
||||
{% block error_description %}We are sorry but your request contains bad syntax and cannot be fulfilled{% endblock %}
|
||||
{% block suggestion %}
|
||||
|
||||
<a class="btn btn-primary" href="/">
|
||||
<i class="fe fe-home mr-2"></i>Home Page
|
||||
</a>
|
||||
{% endblock %}
|
10
app/templates/error/403.html
Normal file
10
app/templates/error/403.html
Normal file
@ -0,0 +1,10 @@
|
||||
{% extends "error.html" %}
|
||||
|
||||
{% block error_name %}403{% endblock %}
|
||||
{% block error_description %}We are sorry but you do not have permission to access this page{% endblock %}
|
||||
{% block suggestion %}
|
||||
|
||||
<a class="btn btn-primary" href="/">
|
||||
<i class="fe fe-home mr-2"></i>Home Page
|
||||
</a>
|
||||
{% endblock %}
|
10
app/templates/error/404.html
Normal file
10
app/templates/error/404.html
Normal file
@ -0,0 +1,10 @@
|
||||
{% extends "error.html" %}
|
||||
|
||||
{% block error_name %}404{% endblock %}
|
||||
{% block error_description %}This page does not exist.{% endblock %}
|
||||
{% block suggestion %}
|
||||
|
||||
<a class="btn btn-primary" href="javascript:history.back()">
|
||||
<i class="fe fe-arrow-left mr-2"></i>Go Back
|
||||
</a>
|
||||
{% endblock %}
|
10
app/templates/error/405.html
Normal file
10
app/templates/error/405.html
Normal file
@ -0,0 +1,10 @@
|
||||
{% extends "error.html" %}
|
||||
|
||||
{% block error_name %}405{% endblock %}
|
||||
{% block error_description %}Client used wrong method when accessing resource.{% endblock %}
|
||||
{% block suggestion %}
|
||||
|
||||
<a class="btn btn-primary" href="javascript:history.back()">
|
||||
<i class="fe fe-arrow-left mr-2"></i>Go Back
|
||||
</a>
|
||||
{% endblock %}
|
10
app/templates/error/429.html
Normal file
10
app/templates/error/429.html
Normal file
@ -0,0 +1,10 @@
|
||||
{% extends "error.html" %}
|
||||
|
||||
{% block error_name %}429{% endblock %}
|
||||
{% block error_description %}Whoa, slow down there, pardner!{% endblock %}
|
||||
{% block suggestion %}
|
||||
|
||||
<a class="btn btn-primary" href="/">
|
||||
<i class="fe fe-home mr-2"></i>Home Page
|
||||
</a>
|
||||
{% endblock %}
|
16
app/templates/error/500.html
Normal file
16
app/templates/error/500.html
Normal file
@ -0,0 +1,16 @@
|
||||
{% extends "error.html" %}
|
||||
|
||||
{% block error_name %}Server error{% endblock %}
|
||||
{% block error_description %}
|
||||
|
||||
Looks like we are having some server issues...
|
||||
<br />
|
||||
<br />
|
||||
We are notified and will look at this issue asap!
|
||||
{% endblock %}
|
||||
{% block suggestion %}
|
||||
|
||||
<a class="btn btn-primary" href="javascript:history.back()">
|
||||
<i class="fe fe-arrow-left mr-2"></i>Go Back
|
||||
</a>
|
||||
{% endblock %}
|
Reference in New Issue
Block a user