20 lines
495 B
Vue
20 lines
495 B
Vue
<template>
|
|
<SMPage no-breadcrumbs>
|
|
<div class="sm-page-error sm-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">
|
|
.sm-page-error.sm-error-forbidden .image {
|
|
background-image: url("/img/403.jpg");
|
|
}
|
|
</style>
|