2009-10-11 22:11:58 -03:00
|
|
|
<h2>Change your password</h2>
|
2009-10-07 21:46:40 -03:00
|
|
|
|
2010-04-06 03:38:47 +02:00
|
|
|
<%= 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! %>
|
2009-10-18 09:14:52 -02:00
|
|
|
<%= 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 />
|
2014-02-21 10:37:17 +00:00
|
|
|
<%= 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 />
|
2014-02-21 10:37:17 +00:00
|
|
|
<%= 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>
|
2009-10-07 21:46:40 -03:00
|
|
|
<% end %>
|
2009-10-08 09:32:48 -03:00
|
|
|
|
2012-05-20 22:01:11 +03:00
|
|
|
<%= render "devise/shared/links" %>
|