philomena/lib/philomena_web/templates/unlock/new.html.heex
2024-06-01 23:50:36 -04:00

12 lines
384 B
Text

<h1>
Resend unlock instructions
</h1>
<%= form_for :user, ~p"/unlocks", fn f -> %>
<div class="field">
<%= email_input(f, :email, placeholder: "Email", class: "input", required: true) %>
</div>
<%= render(PhilomenaWeb.CaptchaView, "_captcha.html", name: "unlock", conn: @conn) %>
<div>
<%= submit("Resend unlock instructions", class: "button") %>
</div>
<% end %>