view client/src/components/PageNotFound.vue @ 5312:11e013b8b1a9 zpg-exception

Client: Fix one condition (zpg_exception) * This corrects using the "zpg_exception" value of the desired survey.
author Fadi Abbud <fadi.abbud@intevation.de>
date Thu, 03 Jun 2021 12:14:12 +0200
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>