2009-10-11 22:11:58 -03:00
|
|
|
<h2>Change your password</h2>
|
2009-10-07 21:46:40 -03:00
|
|
|
|
2014-02-25 14:25:55 -03: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
|
|
|
|
2014-10-22 12:44:01 -04:00
|
|
|
<div class="field">
|
2014-10-22 04:23:51 -04:00
|
|
|
<%= f.label :password, "New password" %><br />
|
2014-12-15 19:52:58 -05:00
|
|
|
<% if @validatable %>
|
|
|
|
<em>(<%= @minimum_password_length %> characters minimum)</em>
|
|
|
|
<% end %><br />
|
2014-10-22 04:23:51 -04:00
|
|
|
<%= f.password_field :password, autofocus: true, autocomplete: "off" %>
|
|
|
|
</div>
|
2009-10-11 22:11:58 -03:00
|
|
|
|
2014-10-22 12:44:01 -04:00
|
|
|
<div class="field">
|
2014-10-22 04:23:51 -04:00
|
|
|
<%= f.label :password_confirmation, "Confirm new password" %><br />
|
|
|
|
<%= f.password_field :password_confirmation, autocomplete: "off" %>
|
|
|
|
</div>
|
2009-10-11 22:11:58 -03:00
|
|
|
|
2014-10-22 04:23:51 -04:00
|
|
|
<div class="actions">
|
|
|
|
<%= 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" %>
|