diff client/src/components/PageNotFound.vue @ 2790:563bcd8b7d7b

Page_not_found: implementation of rudimentary 404 page
author Thomas Junk <thomas.junk@intevation.de>
date Mon, 25 Mar 2019 11:42:31 +0100
parents
children 6c5364ff0abb
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/client/src/components/PageNotFound.vue	Mon Mar 25 11:42:31 2019 +0100
@@ -0,0 +1,22 @@
+<template>
+  <div class="main d-flex flex-row" style="position: relative;">
+    <Spacer></Spacer>
+    <div class="my-auto mx-auto">
+      <h1>
+        <font-awesome-icon icon="frown-open" fixed-width></font-awesome-icon>We
+        are sorry. The ressource you requested could not be found.
+      </h1>
+    </div>
+  </div>
+</template>
+
+<script>
+export default {
+  name: "pagenotfound",
+  components: {
+    Spacer: () => import("@/components/Spacer")
+  }
+};
+</script>
+
+<style></style>