14 lines
342 B
Elixir
14 lines
342 B
Elixir
<h1>Forgot your password?</h1>
|
|
|
|
<%= form_for :user, Routes.user_reset_password_path(@conn, :create), fn f -> %>
|
|
<%= label f, :email %>
|
|
<%= text_input f, :email, required: true %>
|
|
|
|
<div>
|
|
<%= submit "Send instructions to reset password" %>
|
|
</div>
|
|
<% end %>
|
|
|
|
<p>
|
|
<%= link "Login", to: Routes.user_session_path(@conn, :new) %>
|
|
</p>
|