0bd4e5498e
- portal: new admin/ and partner/ surfaces with full component library (AppLauncher, Avatar, Badge, Card, Modal, Tabs, etc.), composables, layouts, partner-routing middleware, and supporting server APIs - pricing: Price schema/module with operator CRUD, pricing.vue catalog UI, Subscription extended with cycle/currency/perSeatAmount/seats snapshots for stable MRR aggregation - partner staff: User.partnerId, invite-partner-user DTO and flow, /partners/:slug/users endpoints, InvitePartnerUserModal, shared dezky-partner-staff Authentik group - /me: partner-aware endpoint returning user + partner context so portal can route between end-user and partner-admin surfaces - tenant: seats field for portfolio displays and future MRR calculations - operator: pricing page, signed-out page, useMe/useToast composables, ToastStack
113 lines
2.4 KiB
Vue
113 lines
2.4 KiB
Vue
<script setup lang="ts">
|
|
// Sign-out landing for the operator portal. /api/auth/sign-out cleared the
|
|
// local session and bounced through Authentik's end-session endpoint, which
|
|
// ended the IdP session. By the time we render here the user has no
|
|
// session anywhere — clicking Sign in again forces fresh credentials.
|
|
|
|
definePageMeta({ layout: 'blank', auth: false, oidcAuth: { enabled: false } })
|
|
|
|
function signInAgain() {
|
|
return navigateTo('/auth/oidc/login', { external: true })
|
|
}
|
|
</script>
|
|
|
|
<template>
|
|
<div class="shell">
|
|
<div class="card">
|
|
<div class="badge">
|
|
<UiIcon name="shield" :size="22" />
|
|
</div>
|
|
<p class="eyebrow">dezky · ops</p>
|
|
<h1>You're signed out</h1>
|
|
<p class="lead">
|
|
Your operator session has been ended. Sign in again whenever you're
|
|
ready — Authentik will ask for fresh credentials.
|
|
</p>
|
|
<button class="primary" type="button" @click="signInAgain">Sign in again</button>
|
|
<p class="hint">operator.dezky.local</p>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped>
|
|
.shell {
|
|
min-height: 100vh;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: 32px;
|
|
background: var(--bg);
|
|
}
|
|
|
|
.card {
|
|
background: var(--surface);
|
|
border: 1px solid var(--border);
|
|
border-radius: 12px;
|
|
padding: 36px 36px 32px;
|
|
width: 100%;
|
|
max-width: 420px;
|
|
text-align: center;
|
|
box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
|
|
}
|
|
|
|
.badge {
|
|
width: 48px;
|
|
height: 48px;
|
|
border-radius: 12px;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
background: rgba(52, 199, 123, 0.12);
|
|
color: var(--ok);
|
|
margin: 0 auto 16px;
|
|
}
|
|
|
|
.eyebrow {
|
|
font-family: var(--font-mono);
|
|
font-size: 11px;
|
|
letter-spacing: 0.18em;
|
|
text-transform: uppercase;
|
|
color: var(--text-mute);
|
|
margin: 0 0 10px 0;
|
|
}
|
|
|
|
h1 {
|
|
font-family: var(--font-display);
|
|
font-weight: 600;
|
|
font-size: 24px;
|
|
letter-spacing: -0.02em;
|
|
line-height: 1.15;
|
|
margin: 0;
|
|
}
|
|
|
|
.lead {
|
|
font-size: 13px;
|
|
color: var(--text-dim);
|
|
line-height: 1.55;
|
|
margin: 14px 0 26px;
|
|
}
|
|
|
|
.primary {
|
|
display: block;
|
|
width: 100%;
|
|
height: 42px;
|
|
background: var(--accent);
|
|
color: var(--accent-fg);
|
|
border: none;
|
|
border-radius: 7px;
|
|
font-weight: 600;
|
|
font-size: 13px;
|
|
font-family: inherit;
|
|
cursor: pointer;
|
|
}
|
|
.primary:hover { filter: brightness(0.96); }
|
|
|
|
.hint {
|
|
font-family: var(--font-mono);
|
|
font-size: 10px;
|
|
letter-spacing: 0.06em;
|
|
color: var(--text-mute);
|
|
margin: 22px 0 0 0;
|
|
}
|
|
</style>
|