metamaps--metamaps/app/views/users/passwords/edit.html.erb
2013-07-10 14:02:38 -04:00

21 lines
578 B
Plaintext

<%= form_for(resource, :as => resource_name, :url => password_path(resource_name), :html => { :method => :put }) do |f| %>
<%= devise_error_messages! %>
<%= f.hidden_field :reset_password_token %>
<h3>Change your password</h3>
<div><%= f.label :password, "New password" %>
<%= f.password_field :password, :autofocus => true %></div>
<div><%= f.label :password_confirmation, "Confirm new password" %>
<%= f.password_field :password_confirmation %></div>
<div><%= f.submit "Change my password" %></div>
<%= render "devise/shared/links" %>
<% end %>