summaryrefslogtreecommitdiffstats
path: root/static/errors
diff options
context:
space:
mode:
authorJokler <jokler@protonmail.com>2020-06-21 06:37:46 +0200
committerJokler <jokler@protonmail.com>2020-06-21 06:37:46 +0200
commite6468b012d5b33dd16992652da57f11dd5a6e82f (patch)
treee89add440df79d4036b9b44d8c77ee6d69e67201 /static/errors
downloadjoklerpoints-e6468b012d5b33dd16992652da57f11dd5a6e82f.tar.gz
joklerpoints-e6468b012d5b33dd16992652da57f11dd5a6e82f.zip
Initial commitHEADmaster
Diffstat (limited to 'static/errors')
-rw-r--r--static/errors/400.htm21
-rw-r--r--static/errors/404.htm21
-rw-r--r--static/errors/500.htm22
3 files changed, 64 insertions, 0 deletions
diff --git a/static/errors/400.htm b/static/errors/400.htm
new file mode 100644
index 0000000..c4a0346
--- /dev/null
+++ b/static/errors/400.htm
@@ -0,0 +1,21 @@
+<!DOCTYPE html>
+<html lang="en">
+ <head>
+ <meta charset="UTF-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
+ <meta http-equiv="X-UA-Compatible" content="ie=edge">
+ <title>400: Bad Request</title>
+
+ <link rel="stylesheet" href="/static/css/style.css">
+ </head>
+ <body>
+ <main>
+ <h1>400 <em>Bad Request</em></h1>
+ <p>The Server could not understand the request.</p>
+ <img id="error-img" src="/static/images/400.jpg">
+ </main>
+ </body>
+</html>
+
+<!-- vim: expandtab sw=2 ts=2
+-->
diff --git a/static/errors/404.htm b/static/errors/404.htm
new file mode 100644
index 0000000..2825b24
--- /dev/null
+++ b/static/errors/404.htm
@@ -0,0 +1,21 @@
+<!DOCTYPE html>
+<html lang="en">
+ <head>
+ <meta charset="UTF-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
+ <meta http-equiv="X-UA-Compatible" content="ie=edge">
+ <title>404: Not Found</title>
+
+ <link rel="stylesheet" href="/static/css/style.css">
+ </head>
+ <body>
+ <main>
+ <h1>404 <em>Not Found</em></h1>
+ <p>The page you are looking for is either gone or never existed in the first place.</p>
+ <img id="error-img" src="/static/images/404.jpg">
+ </main>
+ </body>
+</html>
+
+<!-- vim: expandtab sw=2 ts=2
+-->
diff --git a/static/errors/500.htm b/static/errors/500.htm
new file mode 100644
index 0000000..db008ff
--- /dev/null
+++ b/static/errors/500.htm
@@ -0,0 +1,22 @@
+<!DOCTYPE html>
+<html lang="en">
+ <head>
+ <meta charset="UTF-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
+ <meta http-equiv="X-UA-Compatible" content="ie=edge">
+ <title>500: Internal Server Error</title>
+
+ <link rel="stylesheet" href="/static/css/style.css">
+ </head>
+ <body>
+ <div class="container">
+ <div class="row">
+ <h1>500 <em>Internal Server Error</em></h1>
+ <img id="error-img" src="/static/images/500.jpg">
+ </div>
+ </div>
+ </body>
+</html>
+
+<!-- vim: expandtab sw=2 ts=2
+-->