api-v2/deps/phoenix/priv/templates/phx.gen.auth/session_new.html.heex
2025-04-16 10:03:13 -03:00

32 lines
1.1 KiB
Plaintext

<div class="mx-auto max-w-sm">
<.header class="text-center">
Log in to account
<:subtitle>
Don't have an account?
<.link navigate={~p"<%= schema.route_prefix %>/register"} class="font-semibold text-brand hover:underline">
Sign up
</.link>
for an account now.
</:subtitle>
</.header>
<.simple_form :let={f} for={@conn.params["<%= schema.singular %>"]} as={:<%= schema.singular %>} action={~p"<%= schema.route_prefix %>/log_in"}>
<.error :if={@error_message}>{@error_message}</.error>
<.input field={f[:email]} type="email" label="Email" required />
<.input field={f[:password]} type="password" label="Password" required />
<:actions :let={f}>
<.input field={f[:remember_me]} type="checkbox" label="Keep me logged in" />
<.link href={~p"<%= schema.route_prefix %>/reset_password"} class="text-sm font-semibold">
Forgot your password?
</.link>
</:actions>
<:actions>
<.button phx-disable-with="Logging in..." class="w-full">
Log in <span aria-hidden="true">→</span>
</.button>
</:actions>
</.simple_form>
</div>