/profile: two-card layout with personal info form (name, birth date, email, contact) and password change form, each with independent actions. /users/[id]: read-only public view showing name, username, email, contact with avatar circle initials. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
205 lines
6.2 KiB
Svelte
205 lines
6.2 KiB
Svelte
<script lang="ts">
|
|
import { enhance } from '$app/forms';
|
|
import { m } from '$lib/paraglide/messages.js';
|
|
|
|
let { data, form } = $props();
|
|
</script>
|
|
|
|
<div class="mx-auto max-w-7xl px-4 py-8 sm:px-6 lg:px-8">
|
|
<!-- Back link -->
|
|
<a
|
|
href="/"
|
|
class="group mb-4 inline-flex items-center text-xs font-bold tracking-widest text-gray-500 uppercase transition-colors hover:text-brand-navy"
|
|
>
|
|
<svg
|
|
class="mr-2 h-4 w-4 transform transition-transform group-hover:-translate-x-1"
|
|
fill="none"
|
|
viewBox="0 0 24 24"
|
|
stroke="currentColor"
|
|
stroke-width="2"
|
|
>
|
|
<path stroke-linecap="round" stroke-linejoin="round" d="M15 19l-7-7 7-7" />
|
|
</svg>
|
|
{m.btn_back_to_overview()}
|
|
</a>
|
|
|
|
<h1 class="mb-6 font-serif text-3xl font-bold text-brand-navy">{m.profile_heading()}</h1>
|
|
|
|
<div class="grid grid-cols-1 gap-6 md:grid-cols-2">
|
|
<!-- Personal info card -->
|
|
<div class="rounded-sm border border-brand-sand bg-white p-6 shadow-sm">
|
|
<h2 class="mb-5 text-xs font-bold tracking-widest text-gray-400 uppercase">
|
|
{m.profile_section_personal()}
|
|
</h2>
|
|
|
|
{#if form?.updateSuccess}
|
|
<div class="mb-5 rounded border border-green-200 bg-green-50 p-3 text-sm text-green-700">
|
|
{m.profile_saved()}
|
|
</div>
|
|
{/if}
|
|
{#if form?.updateError}
|
|
<div class="mb-5 rounded border border-red-200 bg-red-50 p-3 text-sm text-red-700">
|
|
{form.updateError}
|
|
</div>
|
|
{/if}
|
|
|
|
<form method="POST" action="?/updateProfile" use:enhance>
|
|
<div class="space-y-4">
|
|
<label class="block">
|
|
<span
|
|
class="mb-1 block font-sans text-xs font-bold tracking-widest text-gray-400 uppercase"
|
|
>
|
|
{m.profile_label_first_name()}
|
|
</span>
|
|
<input
|
|
type="text"
|
|
name="firstName"
|
|
value={data.user?.firstName ?? ''}
|
|
class="w-full rounded-sm border border-brand-sand px-3 py-2 font-serif text-sm focus:border-brand-navy focus:outline-none"
|
|
/>
|
|
</label>
|
|
|
|
<label class="block">
|
|
<span
|
|
class="mb-1 block font-sans text-xs font-bold tracking-widest text-gray-400 uppercase"
|
|
>
|
|
{m.profile_label_last_name()}
|
|
</span>
|
|
<input
|
|
type="text"
|
|
name="lastName"
|
|
value={data.user?.lastName ?? ''}
|
|
class="w-full rounded-sm border border-brand-sand px-3 py-2 font-serif text-sm focus:border-brand-navy focus:outline-none"
|
|
/>
|
|
</label>
|
|
|
|
<label class="block">
|
|
<span
|
|
class="mb-1 block font-sans text-xs font-bold tracking-widest text-gray-400 uppercase"
|
|
>
|
|
{m.profile_label_birth_date()}
|
|
</span>
|
|
<input
|
|
type="date"
|
|
name="birthDate"
|
|
value={data.user?.birthDate ?? ''}
|
|
class="w-full rounded-sm border border-brand-sand px-3 py-2 font-serif text-sm focus:border-brand-navy focus:outline-none"
|
|
/>
|
|
</label>
|
|
|
|
<label class="block">
|
|
<span
|
|
class="mb-1 block font-sans text-xs font-bold tracking-widest text-gray-400 uppercase"
|
|
>
|
|
{m.profile_label_email()}
|
|
</span>
|
|
<input
|
|
type="email"
|
|
name="email"
|
|
value={data.user?.email ?? ''}
|
|
class="w-full rounded-sm border border-brand-sand px-3 py-2 font-serif text-sm focus:border-brand-navy focus:outline-none"
|
|
/>
|
|
</label>
|
|
|
|
<label class="block">
|
|
<span
|
|
class="mb-1 block font-sans text-xs font-bold tracking-widest text-gray-400 uppercase"
|
|
>
|
|
{m.profile_label_contact()}
|
|
</span>
|
|
<textarea
|
|
name="contact"
|
|
rows="3"
|
|
placeholder={m.profile_contact_placeholder()}
|
|
class="w-full rounded-sm border border-brand-sand px-3 py-2 font-serif text-sm focus:border-brand-navy focus:outline-none"
|
|
>{data.user?.contact ?? ''}</textarea
|
|
>
|
|
</label>
|
|
</div>
|
|
|
|
<button
|
|
type="submit"
|
|
class="mt-5 rounded-sm bg-brand-navy px-5 py-2 font-sans text-xs font-bold tracking-widest text-white uppercase transition-opacity hover:opacity-80"
|
|
>
|
|
{m.btn_save()}
|
|
</button>
|
|
</form>
|
|
</div>
|
|
|
|
<!-- Password change card -->
|
|
<div class="rounded-sm border border-brand-sand bg-white p-6 shadow-sm">
|
|
<h2 class="mb-5 text-xs font-bold tracking-widest text-gray-400 uppercase">
|
|
{m.profile_section_password()}
|
|
</h2>
|
|
|
|
{#if form?.passwordSuccess}
|
|
<div class="mb-5 rounded border border-green-200 bg-green-50 p-3 text-sm text-green-700">
|
|
{m.profile_password_changed()}
|
|
</div>
|
|
{/if}
|
|
{#if form?.passwordError}
|
|
<div class="mb-5 rounded border border-red-200 bg-red-50 p-3 text-sm text-red-700">
|
|
{#if form.passwordError === 'PASSWORDS_DO_NOT_MATCH'}
|
|
{m.profile_password_mismatch()}
|
|
{:else}
|
|
{form.passwordError}
|
|
{/if}
|
|
</div>
|
|
{/if}
|
|
|
|
<form method="POST" action="?/changePassword" use:enhance>
|
|
<div class="space-y-4">
|
|
<label class="block">
|
|
<span
|
|
class="mb-1 block font-sans text-xs font-bold tracking-widest text-gray-400 uppercase"
|
|
>
|
|
{m.profile_label_current_password()}
|
|
</span>
|
|
<input
|
|
type="password"
|
|
name="currentPassword"
|
|
required
|
|
class="w-full rounded-sm border border-brand-sand px-3 py-2 font-serif text-sm focus:border-brand-navy focus:outline-none"
|
|
/>
|
|
</label>
|
|
|
|
<label class="block">
|
|
<span
|
|
class="mb-1 block font-sans text-xs font-bold tracking-widest text-gray-400 uppercase"
|
|
>
|
|
{m.profile_label_new_password()}
|
|
</span>
|
|
<input
|
|
type="password"
|
|
name="newPassword"
|
|
required
|
|
class="w-full rounded-sm border border-brand-sand px-3 py-2 font-serif text-sm focus:border-brand-navy focus:outline-none"
|
|
/>
|
|
</label>
|
|
|
|
<label class="block">
|
|
<span
|
|
class="mb-1 block font-sans text-xs font-bold tracking-widest text-gray-400 uppercase"
|
|
>
|
|
{m.profile_label_new_password_confirm()}
|
|
</span>
|
|
<input
|
|
type="password"
|
|
name="confirmPassword"
|
|
required
|
|
class="w-full rounded-sm border border-brand-sand px-3 py-2 font-serif text-sm focus:border-brand-navy focus:outline-none"
|
|
/>
|
|
</label>
|
|
</div>
|
|
|
|
<button
|
|
type="submit"
|
|
class="mt-5 rounded-sm bg-brand-navy px-5 py-2 font-sans text-xs font-bold tracking-widest text-white uppercase transition-opacity hover:opacity-80"
|
|
>
|
|
{m.btn_save()}
|
|
</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|