mirror of
https://github.com/philomena-dev/philomena.git
synced 2024-11-28 13:57:59 +01:00
13 lines
384 B
Text
13 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 %>
|