Attempt to improve public view layout

This commit is contained in:
Johannes Zellner
2025-10-17 00:10:09 +02:00
parent 229863d7ff
commit ac91b417c3
7 changed files with 47 additions and 40 deletions

View File

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