annotate client/src/components/PageNotFound.vue @ 4869:6b054b91d9b2

backend not reachable as error message etd. Login adjusted
author Thomas Junk <thomas.junk@intevation.de>
date Thu, 19 Dec 2019 09:35:14 +0100
parents 6c5364ff0abb
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2790
563bcd8b7d7b Page_not_found: implementation of rudimentary 404 page
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
1 <template>
563bcd8b7d7b Page_not_found: implementation of rudimentary 404 page
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
2 <div class="main d-flex flex-row" style="position: relative;">
2919
6c5364ff0abb client: removed a lot of unnecessary closing tags
Markus Kottlaender <markus@intevation.de>
parents: 2790
diff changeset
3 <Spacer />
2790
563bcd8b7d7b Page_not_found: implementation of rudimentary 404 page
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
4 <div class="my-auto mx-auto">
563bcd8b7d7b Page_not_found: implementation of rudimentary 404 page
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
5 <h1>
2919
6c5364ff0abb client: removed a lot of unnecessary closing tags
Markus Kottlaender <markus@intevation.de>
parents: 2790
diff changeset
6 <font-awesome-icon icon="frown-open" fixed-width />
6c5364ff0abb client: removed a lot of unnecessary closing tags
Markus Kottlaender <markus@intevation.de>
parents: 2790
diff changeset
7 We are sorry. The ressource you requested could not be found.
2790
563bcd8b7d7b Page_not_found: implementation of rudimentary 404 page
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
8 </h1>
563bcd8b7d7b Page_not_found: implementation of rudimentary 404 page
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
9 </div>
563bcd8b7d7b Page_not_found: implementation of rudimentary 404 page
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
10 </div>
563bcd8b7d7b Page_not_found: implementation of rudimentary 404 page
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
11 </template>
563bcd8b7d7b Page_not_found: implementation of rudimentary 404 page
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
12
563bcd8b7d7b Page_not_found: implementation of rudimentary 404 page
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
13 <script>
563bcd8b7d7b Page_not_found: implementation of rudimentary 404 page
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
14 export default {
563bcd8b7d7b Page_not_found: implementation of rudimentary 404 page
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
15 name: "pagenotfound",
563bcd8b7d7b Page_not_found: implementation of rudimentary 404 page
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
16 components: {
563bcd8b7d7b Page_not_found: implementation of rudimentary 404 page
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
17 Spacer: () => import("@/components/Spacer")
563bcd8b7d7b Page_not_found: implementation of rudimentary 404 page
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
18 }
563bcd8b7d7b Page_not_found: implementation of rudimentary 404 page
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
19 };
563bcd8b7d7b Page_not_found: implementation of rudimentary 404 page
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
20 </script>
563bcd8b7d7b Page_not_found: implementation of rudimentary 404 page
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
21
563bcd8b7d7b Page_not_found: implementation of rudimentary 404 page
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
22 <style></style>