moved dashboard crate into here
This commit is contained in:
10
web/templates/errors/401.html.tera
Normal file
10
web/templates/errors/401.html.tera
Normal file
@ -0,0 +1,10 @@
|
||||
{% extends "base" %}
|
||||
|
||||
{% block init %}
|
||||
{% set title = "401 Not Authorized" %}
|
||||
|
||||
{% set show_login = True %}
|
||||
|
||||
{% set page_title = "Not Authorized" %}
|
||||
{% set page_subtitle = "You must be logged in to access this page, if it exists." %}
|
||||
{% endblock %}
|
10
web/templates/errors/403.html.tera
Normal file
10
web/templates/errors/403.html.tera
Normal file
@ -0,0 +1,10 @@
|
||||
{% extends "base" %}
|
||||
|
||||
{% block init %}
|
||||
{% set title = "403 Forbidden" %}
|
||||
|
||||
{% set show_contact = True %}
|
||||
|
||||
{% set page_title = "Forbidden" %}
|
||||
{% set page_subtitle = "You currently cannot access this page, if it exists. Sorry." %}
|
||||
{% endblock %}
|
10
web/templates/errors/404.html.tera
Normal file
10
web/templates/errors/404.html.tera
Normal file
@ -0,0 +1,10 @@
|
||||
{% extends "base" %}
|
||||
|
||||
{% block init %}
|
||||
{% set title = "404 File Not Found" %}
|
||||
|
||||
{% set show_contact = True %}
|
||||
|
||||
{% set page_title = "File Not Found" %}
|
||||
{% set page_subtitle = "This page does not exist. Sorry." %}
|
||||
{% endblock %}
|
9
web/templates/errors/500.html.tera
Normal file
9
web/templates/errors/500.html.tera
Normal file
@ -0,0 +1,9 @@
|
||||
{% extends "base" %}
|
||||
|
||||
{% block init %}
|
||||
{% set title = "500 Internal Server Error" %}
|
||||
{% set show_contact = True %}
|
||||
|
||||
{% set page_title = "An Error Has Occurred" %}
|
||||
{% set page_subtitle = "A server error has occurred. Please contact me and I will try and resolve this" %}
|
||||
{% endblock %}
|
Reference in New Issue
Block a user