Generated Accounts context, User schema, and controllers via phx.gen.auth. Adapted it for password-only login with required email confirmation: - Users have callsign (unique, uppercased), name, email, password - Registration form fields: callsign, name, email, password, confirm - Magic-link login path removed; login is email + password only - After register, a confirmation email is sent and login is blocked until the account is confirmed via the token URL - Confirmation link logs the user in on first use - SMTP2GO configured as the outgoing mailer in k8s prod
64 lines
1.6 KiB
Text
64 lines
1.6 KiB
Text
<Layouts.app flash={@flash} current_scope={@current_scope}>
|
|
<div class="mx-auto max-w-sm">
|
|
<div class="text-center">
|
|
<.header>
|
|
Register for an account
|
|
<:subtitle>
|
|
Already registered?
|
|
<.link navigate={~p"/users/log-in"} class="font-semibold text-brand hover:underline">
|
|
Log in
|
|
</.link>
|
|
to your account now.
|
|
</:subtitle>
|
|
</.header>
|
|
</div>
|
|
|
|
<.form :let={f} for={@changeset} action={~p"/users/register"}>
|
|
<.input
|
|
field={f[:callsign]}
|
|
type="text"
|
|
label="Callsign"
|
|
autocomplete="off"
|
|
autocapitalize="characters"
|
|
spellcheck="false"
|
|
required
|
|
phx-mounted={JS.focus()}
|
|
/>
|
|
<.input
|
|
field={f[:name]}
|
|
type="text"
|
|
label="Name"
|
|
autocomplete="name"
|
|
required
|
|
/>
|
|
<.input
|
|
field={f[:email]}
|
|
type="email"
|
|
label="Email"
|
|
autocomplete="username"
|
|
spellcheck="false"
|
|
required
|
|
/>
|
|
<.input
|
|
field={f[:password]}
|
|
type="password"
|
|
label="Password"
|
|
autocomplete="new-password"
|
|
spellcheck="false"
|
|
required
|
|
/>
|
|
<.input
|
|
field={f[:password_confirmation]}
|
|
type="password"
|
|
label="Confirm password"
|
|
autocomplete="new-password"
|
|
spellcheck="false"
|
|
required
|
|
/>
|
|
|
|
<.button phx-disable-with="Creating account..." class="btn btn-primary w-full">
|
|
Create an account
|
|
</.button>
|
|
</.form>
|
|
</div>
|
|
</Layouts.app>
|