New /profile route (nav link between Admin and Logout) with two independent forms, both requiring the current password before applying a change: - Change password: standard current/new/repeat flow, same password strength rules as registration. - Change email: re-checks the new address isn't already taken (avoids a 500 from the unique constraint), then marks the account unverified and re-sends the confirmation email via the existing EmailVerifier/verify-email flow, same as registration. The current session stays logged in, but the user needs to verify the new address before their next login (UserChecker already blocks unverified accounts).
23 lines
637 B
YAML
23 lines
637 B
YAML
# Algemeen
|
|
site.name: EscapePage
|
|
nav.home: Start
|
|
nav.game: Spel
|
|
nav.admin: Beheer
|
|
nav.profile: Profiel
|
|
nav.login: Inloggen
|
|
nav.register: Registreren
|
|
nav.logout: Uitloggen
|
|
link.enter_game: Ga naar het Speelgedeelte
|
|
link.back_to_website: Terug naar Website
|
|
footer.help_wanted: Op zoek naar hulp
|
|
|
|
# Home pagina
|
|
home.title: "Welkom | %{site}%"
|
|
home.h1: "Welkom bij %{site}%"
|
|
home.description: "Dit is de publieke website. Beperkte interactie, informatie over het spel en links."
|
|
|
|
# Spel hub
|
|
game.title: "Spel Hub | %{site}%"
|
|
game.h1: "Speelgedeelte"
|
|
game.description: "Dit is de spelhub. Interactieve componenten worden hier later gebouwd."
|