mirror of
https://github.com/philomena-dev/philomena.git
synced 2024-11-30 14:57:59 +01:00
14 lines
482 B
Text
14 lines
482 B
Text
<h1>
|
|
Forgot your password?
|
|
</h1>
|
|
<p>
|
|
Provide the email address you signed up with and we will email you
|
|
password reset instructions.
|
|
</p>
|
|
<%= form_for :user, ~p"/passwords", fn f -> %>
|
|
<div class="field">
|
|
<%= email_input(f, :email, class: "input", placeholder: "Email", required: true) %>
|
|
</div>
|
|
<%= render(PhilomenaWeb.CaptchaView, "_captcha.html", name: "password", conn: @conn) %>
|
|
<%= submit("Send instructions to reset password", class: "button") %>
|
|
<% end %>
|