1
0
Fork 0
mirror of https://github.com/heartcombo/devise.git synced 2022-11-09 12:18:31 -05:00
heartcombo--devise/app/views/devise/passwords/new.html.erb

12 lines
334 B
Text
Raw Normal View History

2009-10-11 21:11:58 -04:00
<h2>Forgot your password?</h2>
2010-03-11 12:39:32 -05:00
<%= form_for(resource_name, resource, :url => password_path(resource_name)) do |f| %>
2009-10-10 08:32:51 -04:00
<%= f.error_messages %>
2009-10-11 21:11:58 -04:00
<p><%= f.label :email %></p>
<p><%= f.text_field :email %></p>
2009-10-11 21:11:58 -04:00
<p><%= f.submit "Send me reset password instructions" %></p>
<% end %>
<%= render :partial => "devise/shared/links" %>