view 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
line wrap: on
line source

<template>
  <div class="main d-flex flex-row" style="position: relative;">
    <Spacer />
    <div class="my-auto mx-auto">
      <h1>
        <font-awesome-icon icon="frown-open" fixed-width />
        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>