diff --git a/public/404.html b/public/404.html index 2be3af26..ef2afdcc 100644 --- a/public/404.html +++ b/public/404.html @@ -1,67 +1,22 @@ - The page you were looking for doesn't exist (404) + Page not found - + - + -
-
-

The page you were looking for doesn't exist.

-

You may have mistyped the address or the page may have moved.

-
-

If you are the application owner check the logs for more information.

+
+

Page not found

+ +

+ The page you're looking for doesn't exist. +

+

+ Go back to home page +

diff --git a/public/422.html b/public/422.html index c08eac0d..75547bde 100644 --- a/public/422.html +++ b/public/422.html @@ -1,67 +1,22 @@ - The change you wanted was rejected (422) + The change you wanted was rejected - + - + -
-
-

The change you wanted was rejected.

-

Maybe you tried to change something you didn't have access to.

-
-

If you are the application owner check the logs for more information.

+
+

Rejected

+ +

+ The change you wanted was rejected. If you're trying to do something bad, our team of astute foxes is already looking out for you. Watch out! +

+

+ If you think you should be allowed to do this, then contact us. +

diff --git a/public/500.html b/public/500.html index 78a030af..193f83a6 100644 --- a/public/500.html +++ b/public/500.html @@ -1,66 +1,22 @@ - We're sorry, but something went wrong (500) + We're sorry, but something went wrong - + - + -
-
-

We're sorry, but something went wrong.

-
-

If you are the application owner check the logs for more information.

+
+

Something went wrong

+ +

+ We're sorry. Wait a moment and try again. +

+

+ If the issue persists, contact us. +

diff --git a/public/error-404.png b/public/error-404.png new file mode 100644 index 00000000..9fc752ad Binary files /dev/null and b/public/error-404.png differ diff --git a/public/error-422.png b/public/error-422.png new file mode 100644 index 00000000..7740e71e Binary files /dev/null and b/public/error-422.png differ diff --git a/public/error-500.png b/public/error-500.png new file mode 100644 index 00000000..de5f709d Binary files /dev/null and b/public/error-500.png differ diff --git a/public/style.css b/public/style.css new file mode 100644 index 00000000..cab45c03 --- /dev/null +++ b/public/style.css @@ -0,0 +1,28 @@ +.card { + /* Bootstrap 4.6.2 card style */ + position: relative; + display: -ms-flexbox; + display: flex; + -ms-flex-direction: column; + flex-direction: column; + min-width: 0; + word-wrap: break-word; + background-color: #fff; + background-clip: border-box; + border: 1px solid rgba(0, 0, 0, 0.125); + border-radius: 0.25rem; + + /* My customizations */ + max-width: 720px; + text-align: center; + font-family: system-ui; + margin: 0 auto; + box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.04),0 2px 4px -1px rgba(0, 0, 0, 0.03); + transition: all 0.3s cubic-bezier(.25,.8,.25,1); + color: black; + padding: 8px; +} + +.error-image { margin: 0 auto; } +.error-description { font-size: 18px; } +a { color: black; } \ No newline at end of file