You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
504 B

  1. = form_for(resource, as: resource_name, url: registration_path(resource_name), html: { method: :put }) do |f|
  2. = devise_error_messages!
  3. .field
  4. = f.password_field :password, autocomplete: "off", placeholder: 'New password'
  5. .field
  6. = f.password_field :password_confirmation, autocomplete: "off", placeholder: 'Confirm new password'
  7. .field
  8. = f.password_field :current_password, autocomplete: "off", placeholder: 'Current password'
  9. .actions
  10. = f.button "Save changes", type: 'submit'