philomena/lib/philomena_web/templates/password/new.html.heex

15 lines
482 B
Text
Raw Normal View History

2024-06-02 05:50:36 +02:00
<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 %>