Change your password

<%= form_for(resource, :as => resource_name, :url => password_path(resource_name), :html => { :method => :put, :class => 'form-horizontal' }) do |f| %> <%= devise_error_messages! %> <%= f.hidden_field :reset_password_token %>
<%= f.label :password, "New password", :class => 'control-label' %>
<%= f.password_field :password, :class => 'span4' %>
<%= f.label :password_confirmation, "Confirm new password", :class => 'control-label' %>
<%= f.password_field :password_confirmation, :class => 'span4' %>
<%= f.submit "Change my password", :class => "btn btn-primary" %>
<% end %> <%= render "devise/shared/links" %>