Files
cloudron-box/dashboard/src/views/OidcInteractionAbortView.vue
2025-10-17 00:10:09 +02:00

22 lines
557 B
Vue

<script setup>
import { Button } from '@cloudron/pankow';
import PublicPageLayout from '../components/PublicPageLayout.vue';
// coming from oidc_error.html server-side rendered
const cloudronName = window.cloudron.name;
const submitUrl = window.cloudron.submitUrl;
const footer = window.cloudron.footer;
</script>
<template>
<PublicPageLayout :footer-html="footer" :cloudron-name="cloudronName">
<div>
<h2>You do not have access</h2>
<br/>
<Button :href="submitUrl">Continue</Button>
</div>
</PublicPageLayout>
</template>