From fd1944b3d67f2428f0f3c4a36278b193d988a8d6 Mon Sep 17 00:00:00 2001 From: Mohammad safa kamali Date: Thu, 21 Mar 2024 21:36:19 +0330 Subject: [PATCH] add details and back btn in error pages --- app/templates/errors/403.html | 2 ++ app/templates/errors/404.html | 2 ++ app/templates/errors/500.html | 2 ++ 3 files changed, 6 insertions(+) diff --git a/app/templates/errors/403.html b/app/templates/errors/403.html index 59a5dc5a..9a7423d8 100644 --- a/app/templates/errors/403.html +++ b/app/templates/errors/403.html @@ -3,4 +3,6 @@ {% block content %}

403

Forbidden

+ Access Denied! You do not have permission to view this page. + Back to home page {% endblock %} \ No newline at end of file diff --git a/app/templates/errors/404.html b/app/templates/errors/404.html index e6cc0d48..42b4d9d7 100644 --- a/app/templates/errors/404.html +++ b/app/templates/errors/404.html @@ -3,4 +3,6 @@ {% block content %}

404

Page not found

+ The page you are looking for could not be found. Please check the URL or go back to the homepage. + Back to home page {% endblock %} \ No newline at end of file diff --git a/app/templates/errors/500.html b/app/templates/errors/500.html index 3e7fa6bf..cfa27f2d 100644 --- a/app/templates/errors/500.html +++ b/app/templates/errors/500.html @@ -3,4 +3,6 @@ {% block content %}

500

Internal Server Error

+ Something went wrong on our end. We are working to fix this issue. Please try again later. + Back to home page {% endblock %} \ No newline at end of file