Some checks failed
CI / Unit & Component Tests (push) Successful in 2m7s
CI / Backend Unit Tests (push) Successful in 2m3s
CI / E2E Tests (push) Failing after 14m54s
CI / Unit & Component Tests (pull_request) Successful in 2m4s
CI / E2E Tests (pull_request) Has been cancelled
CI / Backend Unit Tests (pull_request) Has been cancelled
- /forgot-password: email form → sends POST /api/auth/forgot-password → success banner - /reset-password: password form reads token from URL → sends POST /api/auth/reset-password - Login page: add "Passwort vergessen?" link - hooks.server.ts: add /forgot-password and /reset-password to PUBLIC_PATHS; skip auth injection for public auth API endpoints - errors.ts: add INVALID_RESET_TOKEN error code - i18n: add all new message keys in de/en/es - playwright.config.ts: use E2E_BASE_URL for webServer check URL (allows reusing docker dev server at port 5173 locally) - ci.yml: pass E2E_BACKEND_URL=http://localhost:8080 to E2E test step - e2e/password-reset.spec.ts: 5 tests (4 pass locally, full flow requires e2e profile in CI) - Regenerated OpenAPI types including new /api/auth/* endpoints Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
110 lines
3.5 KiB
Svelte
110 lines
3.5 KiB
Svelte
<script lang="ts">
|
|
import { m } from '$lib/paraglide/messages.js';
|
|
import { setLocale, getLocale } from '$lib/paraglide/runtime';
|
|
|
|
let { form }: { form?: { error?: string; success?: boolean } } = $props();
|
|
|
|
const locales = ['DE', 'EN', 'ES'] as const;
|
|
const localeMap = { DE: 'de', EN: 'en', ES: 'es' } as const;
|
|
const activeLocale = $derived(getLocale().toUpperCase());
|
|
</script>
|
|
|
|
<div class="relative flex min-h-screen flex-col bg-white">
|
|
<!-- DGB purple accent strip -->
|
|
<div class="h-1 bg-brand-purple"></div>
|
|
|
|
<!-- Language switcher -->
|
|
<div class="absolute top-4 right-4 flex items-center gap-1">
|
|
{#each locales as locale (locale)}
|
|
<button
|
|
type="button"
|
|
onclick={() => setLocale(localeMap[locale])}
|
|
class="px-1.5 py-1 font-sans text-xs tracking-widest transition-colors
|
|
{activeLocale === locale
|
|
? 'font-bold text-brand-navy'
|
|
: 'font-normal text-gray-400 hover:text-brand-navy'}"
|
|
>
|
|
{locale}
|
|
</button>
|
|
{/each}
|
|
</div>
|
|
|
|
<div class="flex flex-1 items-center justify-center px-4">
|
|
<div class="w-full max-w-sm">
|
|
<!-- Logo -->
|
|
<div class="mb-10 text-center">
|
|
<a href="/" class="inline-flex items-center" aria-label="Familienarchiv">
|
|
<span class="font-sans text-2xl font-bold tracking-widest text-brand-navy uppercase"
|
|
>Familienarchiv</span
|
|
>
|
|
</a>
|
|
</div>
|
|
|
|
<!-- Card -->
|
|
<div class="rounded-sm border border-brand-sand bg-white p-8 shadow-sm">
|
|
<h1 class="mb-6 font-sans text-sm font-bold tracking-widest text-brand-navy uppercase">
|
|
{m.login_heading()}
|
|
</h1>
|
|
|
|
<form method="POST" action="?/login" class="space-y-5">
|
|
<div>
|
|
<label
|
|
for="username"
|
|
class="mb-1.5 block font-sans text-xs font-bold tracking-widest text-gray-500 uppercase"
|
|
>{m.login_label_username()}</label
|
|
>
|
|
<input
|
|
type="text"
|
|
name="username"
|
|
id="username"
|
|
required
|
|
autocomplete="username"
|
|
class="block w-full border border-gray-300 px-3 py-2.5 font-serif text-sm text-brand-navy placeholder-gray-400 focus:border-brand-navy focus:ring-1 focus:ring-brand-navy focus:outline-none"
|
|
/>
|
|
</div>
|
|
|
|
<div>
|
|
<label
|
|
for="password"
|
|
class="mb-1.5 block font-sans text-xs font-bold tracking-widest text-gray-500 uppercase"
|
|
>{m.login_label_password()}</label
|
|
>
|
|
<input
|
|
type="password"
|
|
name="password"
|
|
id="password"
|
|
required
|
|
autocomplete="current-password"
|
|
class="block w-full border border-gray-300 px-3 py-2.5 font-serif text-sm text-brand-navy placeholder-gray-400 focus:border-brand-navy focus:ring-1 focus:ring-brand-navy focus:outline-none"
|
|
/>
|
|
</div>
|
|
|
|
{#if form?.error}
|
|
<div class="text-center font-sans text-xs font-medium text-red-600">{form.error}</div>
|
|
{/if}
|
|
|
|
<button
|
|
type="submit"
|
|
class="mt-2 w-full bg-brand-navy py-2.5 font-sans text-xs font-bold tracking-widest text-white uppercase transition-colors hover:bg-brand-navy/90"
|
|
>
|
|
{m.login_btn_submit()}
|
|
</button>
|
|
|
|
<div class="mt-4 text-center">
|
|
<a
|
|
href="/forgot-password"
|
|
class="font-sans text-xs text-gray-400 transition-colors hover:text-brand-navy"
|
|
>{m.login_forgot_password()}</a
|
|
>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Footer -->
|
|
<div class="py-4 text-center">
|
|
<p class="font-sans text-xs tracking-widest text-gray-300 uppercase">Familienarchiv</p>
|
|
</div>
|
|
</div>
|