defmodule ChiyaWeb.UserConfirmationInstructionsLive do use ChiyaWeb, :live_view alias Chiya.Accounts def render(assigns) do ~H""" <.header>Resend confirmation instructions <.simple_form for={@form} id="resend_confirmation_form" phx-submit="send_instructions"> <.input field={@form[:email]} type="email" label="Email" required /> <:actions> <.button phx-disable-with="Sending...">Resend confirmation instructions

<.link href={~p"/user/register"}>Register | <.link href={~p"/user/log_in"}>Log in

""" end def mount(_params, _session, socket) do {:ok, assign(socket, form: to_form(%{}, as: "user"))} end def handle_event("send_instructions", %{"user" => %{"email" => email}}, socket) do if user = Accounts.get_user_by_email(email) do Accounts.deliver_user_confirmation_instructions( user, &url(~p"/user/confirm/#{&1}") ) end info = "If your email is in our system and it has not been confirmed yet, you will receive an email with instructions shortly." {:noreply, socket |> put_flash(:info, info) |> redirect(to: ~p"/")} end end