0840efb759
Operator sign-out hardcoded the dev Authentik end-session URL, so prod logout landed on auth.dezky.local. Mirror the portal's env-driven pattern (NUXT_PUBLIC_AUTH_URL/NUXT_PUBLIC_OPERATOR_URL with .local fallbacks). Expose authUrl/operatorUrl via public runtimeConfig and use them for the Authentik admin links and the cosmetic host labels (sidebar, eyebrows, auth-page hints). Portal: signed-out + webmail copy now derive their hosts from runtime config (new public.mailUrl, NUXT_PUBLIC_MAIL_URL in prod).
114 lines
2.5 KiB
Vue
114 lines
2.5 KiB
Vue
<script setup lang="ts">
|
|
const operatorHost = new URL(useRuntimeConfig().public.operatorUrl).host
|
|
// 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">{{ operatorHost }}</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>
|