Retrospring/app/views/devise/passwords/edit.html.haml

13 lines
492 B
Plaintext
Raw Normal View History

2014-08-01 08:40:48 -07:00
.container
%h1 Change your password
2014-11-02 04:47:35 -08:00
= bootstrap_form_for(resource, as: resource_name, url: password_path(resource_name), html: { method: :put }) do |f|
2014-08-01 08:40:48 -07:00
= devise_error_messages!
= f.hidden_field :reset_password_token
= f.password_field :password, autofocus: true, autocomplete: "off", label: "New password"
= f.password_field :password_confirmation, autocomplete: "off", label: "Confirm new password"
= f.submit "Change my password"
= render "devise/shared/links"