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/edit.html.erb

17 lines
630 B
Text
Raw Normal View History

2009-10-11 22:11:58 -03:00
<h2>Change your password</h2>
<%= form_for(resource, :as => resource_name, :url => password_path(resource_name), :html => { :method => :put }) do |f| %>
2010-04-13 23:28:13 +02:00
<%= devise_error_messages! %>
<%= f.hidden_field :reset_password_token %>
2009-10-11 22:11:58 -03:00
2011-07-14 15:43:10 +03:00
<div><%= f.label :password, "New password" %><br />
<%= f.password_field :password, :autofocus => true, :autocomplete => "off" %></div>
2009-10-11 22:11:58 -03:00
2011-07-14 15:43:10 +03:00
<div><%= f.label :password_confirmation, "Confirm new password" %><br />
<%= f.password_field :password_confirmation, :autocomplete => "off" %></div>
2009-10-11 22:11:58 -03:00
2011-07-14 15:43:10 +03:00
<div><%= f.submit "Change my password" %></div>
<% end %>
<%= render "devise/shared/links" %>