Skip to content
This repository was archived by the owner on Mar 7, 2025. It is now read-only.

Add a info text about error and back btn in error pages #229

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions app/templates/errors/403.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,6 @@
{% block content %}
<h1 class="ui header">403</h1>
<h3 class="ui header">Forbidden</h3>
<span>Access Denied! You do not have permission to view this page.</span>
<a href="/" class="ui small button">Back to home page</a>
{% endblock %}
2 changes: 2 additions & 0 deletions app/templates/errors/404.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,6 @@
{% block content %}
<h1 class="ui header">404</h1>
<h3 class="ui header">Page not found</h3>
<span>The page you are looking for could not be found. Please check the URL or go back to the homepage.</span>
<a href="/" class="ui small button">Back to home page</a>
{% endblock %}
2 changes: 2 additions & 0 deletions app/templates/errors/500.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,6 @@
{% block content %}
<h1 class="ui header">500</h1>
<h3 class="ui header">Internal Server Error</h3>
<span>Something went wrong on our end. We are working to fix this issue. Please try again later.</span>
<a href="/" class="ui small button">Back to home page</a>
{% endblock %}