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.

26 lines
1.3 KiB

  1. - content_for :page_title do
  2. = t('auth.change_password')
  3. = simple_form_for(resource, as: resource_name, url: registration_path(resource_name), html: { method: :put, class: 'auth_edit' }) do |f|
  4. = render 'shared/error_messages', object: resource
  5. - if !use_pam? || current_user.encrypted_password.present?
  6. = f.input :email, placeholder: t('simple_form.labels.defaults.email'), input_html: { 'aria-label' => t('simple_form.labels.defaults.email') }
  7. = f.input :password, placeholder: t('simple_form.labels.defaults.new_password'), input_html: { 'aria-label' => t('simple_form.labels.defaults.new_password'), :autocomplete => 'off' }
  8. = f.input :password_confirmation, placeholder: t('simple_form.labels.defaults.confirm_new_password'), input_html: { 'aria-label' => t('simple_form.labels.defaults.confirm_new_password'), :autocomplete => 'off' }
  9. = f.input :current_password, placeholder: t('simple_form.labels.defaults.current_password'), input_html: { 'aria-label' => t('simple_form.labels.defaults.current_password'), :autocomplete => 'off' }
  10. .actions
  11. = f.button :button, t('generic.save_changes'), type: :submit
  12. - else
  13. = t('simple_form.labels.defaults.pam_account')
  14. %hr/
  15. = render 'sessions'
  16. - if open_deletion?
  17. %hr/
  18. %h6= t('auth.delete_account')
  19. %p.muted-hint= t('auth.delete_account_html', path: settings_delete_path)