Files
Website/resources/js/components/errors/Forbidden.vue
2023-02-27 14:52:01 +10:00

20 lines
471 B
Vue

<template>
<SMPage no-breadcrumbs>
<div class="page-error forbidden">
<div class="image"></div>
<div class="content">
<h1>The cat says no!</h1>
<p>You do not have the needed access to see this page</p>
</div>
</div>
</SMPage>
</template>
<script setup lang="ts"></script>
<style lang="scss">
.page-error.forbidden .image {
background-image: url("/img/403.jpg");
}
</style>