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).
98 lines
1.9 KiB
Vue
98 lines
1.9 KiB
Vue
<script setup lang="ts">
|
|
const operatorHost = new URL(useRuntimeConfig().public.operatorUrl).host
|
|
// O.3 scaffolding login. Real visual treatment lands in O.4 with the full
|
|
// design system port. For now: minimal dark-themed bounce to Authentik.
|
|
|
|
definePageMeta({ auth: false, layout: 'blank' })
|
|
|
|
async function signIn() {
|
|
await navigateTo('/auth/oidc/login', { external: true })
|
|
}
|
|
</script>
|
|
|
|
<template>
|
|
<div class="shell">
|
|
<div class="card">
|
|
<p class="eyebrow">dezky · ops</p>
|
|
<h1>Operator portal</h1>
|
|
<p class="lead">
|
|
Authentik-issued tokens · platform-admin group required · MFA when enrolled.
|
|
</p>
|
|
<button class="primary" @click="signIn">Sign in</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;
|
|
}
|
|
|
|
.card {
|
|
background: var(--surface);
|
|
border: 1px solid var(--border);
|
|
border-radius: 12px;
|
|
padding: 40px 36px;
|
|
width: 100%;
|
|
max-width: 420px;
|
|
box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
|
|
}
|
|
|
|
.eyebrow {
|
|
font-family: var(--font-mono);
|
|
font-size: 11px;
|
|
letter-spacing: 0.18em;
|
|
text-transform: uppercase;
|
|
color: var(--text-mute);
|
|
margin: 0 0 12px 0;
|
|
}
|
|
|
|
h1 {
|
|
font-family: var(--font-display);
|
|
font-weight: 600;
|
|
font-size: 28px;
|
|
letter-spacing: -0.02em;
|
|
line-height: 1.1;
|
|
margin: 0;
|
|
}
|
|
|
|
.lead {
|
|
font-size: 13px;
|
|
color: var(--text-dim);
|
|
line-height: 1.55;
|
|
margin: 12px 0 28px 0;
|
|
}
|
|
|
|
.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 {
|
|
text-align: center;
|
|
font-family: var(--font-mono);
|
|
font-size: 10px;
|
|
letter-spacing: 0.06em;
|
|
color: var(--text-mute);
|
|
margin: 24px 0 0 0;
|
|
}
|
|
</style>
|