mirror of
https://github.com/philomena-dev/philomena.git
synced 2024-11-28 13:57:59 +01:00
12 lines
408 B
Text
12 lines
408 B
Text
<h1>
|
|
Resend confirmation instructions
|
|
</h1>
|
|
<%= form_for :user, ~p"/confirmations", fn f -> %>
|
|
<div class="field">
|
|
<%= email_input(f, :email, placeholder: "Email", class: "input", required: true) %>
|
|
</div>
|
|
<%= render(PhilomenaWeb.CaptchaView, "_captcha.html", name: "confirmation", conn: @conn) %>
|
|
<div>
|
|
<%= submit("Resend confirmation instructions", class: "button") %>
|
|
</div>
|
|
<% end %>
|