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.

23 lines
1.2 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 }) do |f|
  4. = render 'shared/error_messages', object: resource
  5. = f.input :email, placeholder: t('simple_form.labels.defaults.email'), input_html: { 'aria-label' => t('simple_form.labels.defaults.email') }
  6. = f.input :password, autocomplete: 'off', placeholder: t('simple_form.labels.defaults.new_password'), input_html: { 'aria-label' => t('simple_form.labels.defaults.new_password') }
  7. = f.input :password_confirmation, autocomplete: 'off', placeholder: t('simple_form.labels.defaults.confirm_new_password'), input_html: { 'aria-label' => t('simple_form.labels.defaults.confirm_new_password') }
  8. = f.input :current_password, autocomplete: 'off', placeholder: t('simple_form.labels.defaults.current_password'), input_html: { 'aria-label' => t('simple_form.labels.defaults.current_password') }
  9. .actions
  10. = f.button :button, t('generic.save_changes'), type: :submit
  11. %hr/
  12. = render 'sessions'
  13. - if open_deletion?
  14. %hr/
  15. %h6= t('auth.delete_account')
  16. %p.muted-hint= t('auth.delete_account_html', path: settings_delete_path)