Per WS-3 PR-B1 charter §4.2: portal pages relocate into the
single-SPA layout under apps/app/src/pages/portal/** (authenticated
portal context) and apps/app/src/pages/register/** (public
token-based form-fill / confirmation).
Updated meta blocks:
- Portal pages: layout: 'PortalLayout', context: 'portal'
(preserving original requiresAuth + nav fields)
- Register pages: layout: 'PublicLayout' (drop requiresAuth)
Skipped (apps/portal duplicates of pages already in apps/app):
index.vue, login.vue, wachtwoord-{vergeten,resetten}.vue,
verify-email-change.vue. Deleted: [...path].vue (apps/app already
has [...error].vue catch-all).
NOTE: Component/store/composable imports inside these files still
point at apps/portal-relative paths and will be rewritten in the
next commits. Build will not be green again until commit 6
(composables/lib).
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
36 lines
740 B
Vue
36 lines
740 B
Vue
<script setup lang="ts">
|
|
definePage({
|
|
name: 'artist-advance',
|
|
meta: {
|
|
layout: 'portal',
|
|
requiresAuth: false,
|
|
requiresToken: true,
|
|
},
|
|
})
|
|
|
|
const route = useRoute('artist-advance')
|
|
const token = computed(() => route.params.token)
|
|
</script>
|
|
|
|
<template>
|
|
<VRow justify="center">
|
|
<VCol
|
|
cols="12"
|
|
md="8"
|
|
lg="6"
|
|
>
|
|
<VCard class="text-center pa-6">
|
|
<VCardTitle class="text-h5">
|
|
Artist Advance Portal
|
|
</VCardTitle>
|
|
<VCardSubtitle>
|
|
Vul je technische en hospitality riders in
|
|
</VCardSubtitle>
|
|
<VCardText class="text-body-1 mt-4">
|
|
Token: <code>{{ token }}</code>
|
|
</VCardText>
|
|
</VCard>
|
|
</VCol>
|
|
</VRow>
|
|
</template>
|