From afefccff06141c0ba04d3bb0509455a72ac6ab0b Mon Sep 17 00:00:00 2001 From: arzumify Date: Wed, 30 Oct 2024 20:49:59 +0000 Subject: [PATCH] Added error pages --- error-403/index.html | 48 ++++++++++++++++++++++++++++++++++++++++++++ error-404/index.html | 48 ++++++++++++++++++++++++++++++++++++++++++++ static/css/error.css | 15 ++++++++++++++ 3 files changed, 111 insertions(+) create mode 100644 error-403/index.html create mode 100644 error-404/index.html create mode 100644 static/css/error.css diff --git a/error-403/index.html b/error-403/index.html new file mode 100644 index 0000000..8ed559a --- /dev/null +++ b/error-403/index.html @@ -0,0 +1,48 @@ + + + + + + + + Error 403 + + + + +
+

Uh oh, a [f]ailur!

+

403 - Permission denied

+ Return to home +
+ + + + \ No newline at end of file diff --git a/error-404/index.html b/error-404/index.html new file mode 100644 index 0000000..3bc0e13 --- /dev/null +++ b/error-404/index.html @@ -0,0 +1,48 @@ + + + + + + + + Error 404 + + + + +
+

Uh oh, a [f]ailur!

+

404 - Page not found

+ Return to home +
+ + + + \ No newline at end of file diff --git a/static/css/error.css b/static/css/error.css new file mode 100644 index 0000000..da8779e --- /dev/null +++ b/static/css/error.css @@ -0,0 +1,15 @@ +@import "common.css"; + +body { + text-align: center; +} + +.blockContainer h1 { + font-size: 60px; + margin: 0 0 0 0; +} + +.blockContainer a { + font-size: 18px; + margin-top: 20px; +} \ No newline at end of file