retrospring/app/views/devise/passwords/new.html.erb
2014-08-01 15:27:08 +02:00

12 lines
392 B
Text

<h2>Forgot your password?</h2>
<%= form_for(resource, as: resource_name, url: password_path(resource_name), html: { method: :post }) do |f| %>
<%= devise_error_messages! %>
<div><%= f.label :screen_name %><br />
<%= f.email_field :screen_name, autofocus: true %></div>
<div><%= f.submit "Send me reset password instructions" %></div>
<% end %>
<%= render "devise/shared/links" %>