about summary refs log tree commit diff
path: root/app/views/auth/registrations/edit.html.haml
blob: 567f0ea443a21f81b5693e5568d0cc5831c0bc15 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
- content_for :page_title do
  Change password

= form_for(resource, as: resource_name, url: registration_path(resource_name), html: { method: :put }) do |f|
  = devise_error_messages!

  .field
    = f.email_field :email, placeholder: 'E-mail address'
  .field
    = f.password_field :password, autocomplete: "off", placeholder: 'New password'
  .field
    = f.password_field :password_confirmation, autocomplete: "off", placeholder: 'Confirm new password'
  .field
    = f.password_field :current_password, autocomplete: "off", placeholder: 'Current password'

  .actions
    = f.button "Save changes", type: 'submit'

.form-footer= render "settings/shared/links"