about summary refs log tree commit diff
path: root/resources
diff options
context:
space:
mode:
Diffstat (limited to 'resources')
-rw-r--r--resources/404.html21
-rw-r--r--resources/500.html20
2 files changed, 41 insertions, 0 deletions
diff --git a/resources/404.html b/resources/404.html
new file mode 100644
index 0000000..01b164c
--- /dev/null
+++ b/resources/404.html
@@ -0,0 +1,21 @@
+<!DOCTYPE html>
+<html>
+<head>
+  <meta charset="utf-8">
+  <title>Page Not Found</title>
+  <style type="text/css">
+	body {
+      font-family: "Ubuntu Light", helvetica, sans-serif;
+      width: 960px;
+      margin: 3em auto;
+	}
+  </style>
+</head>
+<body>
+  <!-- TODO: replace this with something that matches your app style -->
+  <h1>Page Not Found</h1>
+  <p>There's no page at the address you requested. If you entered it
+    by hand, check for typos. If you followed a link or a bookmark,
+    it may need to be updated.</p>
+</body>
+</html>
diff --git a/resources/500.html b/resources/500.html
new file mode 100644
index 0000000..cb6474f
--- /dev/null
+++ b/resources/500.html
@@ -0,0 +1,20 @@
+<!DOCTYPE html>
+<html>
+<head>
+  <meta charset="utf-8">
+  <title>Error</title>
+  <style type="text/css">
+	body {
+      font-family: "Ubuntu Light", helvetica, sans-serif;
+      width: 960px;
+      margin: 3em auto;
+	}
+  </style>
+</head>
+<body>
+  <!-- TODO: replace this with something that matches your app style -->
+  <h1>Error</h1>
+  <p>Something went wrong. Try again, and if the problem persists
+    please contact support.</p>
+</body>
+</html>