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.

47 lines
2.3 KiB

  1. - content_for :page_title do
  2. = t('settings.account_settings')
  3. = render 'status'
  4. %h3= t('auth.security')
  5. = simple_form_for(resource, as: resource_name, url: registration_path(resource_name), html: { method: :put, class: 'auth_edit', novalidate: false }) do |f|
  6. = render 'shared/error_messages', object: resource
  7. - if !use_seamless_external_login? || resource.encrypted_password.present?
  8. .fields-row
  9. .fields-row__column.fields-group.fields-row__column-6
  10. = f.input :email, wrapper: :with_label, input_html: { 'aria-label' => t('simple_form.labels.defaults.email') }, required: true, disabled: current_account.suspended?
  11. .fields-row__column.fields-group.fields-row__column-6
  12. = f.input :current_password, wrapper: :with_label, input_html: { 'aria-label' => t('simple_form.labels.defaults.current_password'), :autocomplete => 'off' }, required: true, disabled: current_account.suspended?, hint: false
  13. .fields-row
  14. .fields-row__column.fields-group.fields-row__column-6
  15. = f.input :password, wrapper: :with_label, label: t('simple_form.labels.defaults.new_password'), input_html: { 'aria-label' => t('simple_form.labels.defaults.new_password'), :autocomplete => 'off', :minlength => User.password_length.first, :maxlength => User.password_length.last }, hint: t('simple_form.hints.defaults.password'), disabled: current_account.suspended?
  16. .fields-row__column.fields-group.fields-row__column-6
  17. = f.input :password_confirmation, wrapper: :with_label, label: t('simple_form.labels.defaults.confirm_new_password'), input_html: { 'aria-label' => t('simple_form.labels.defaults.confirm_new_password'), :autocomplete => 'off' }, disabled: current_account.suspended?
  18. .actions
  19. = f.button :button, t('generic.save_changes'), type: :submit, class: 'button', disabled: current_account.suspended?
  20. - else
  21. %p.hint= t('users.seamless_external_login')
  22. %hr.spacer/
  23. = render 'sessions'
  24. %hr.spacer/
  25. %h3= t('auth.migrate_account')
  26. %p.muted-hint= t('auth.migrate_account_html', path: settings_migration_path)
  27. %hr.spacer/
  28. %h3= t('migrations.incoming_migrations')
  29. %p.muted-hint= t('migrations.incoming_migrations_html', path: settings_aliases_path)
  30. - if open_deletion? && !current_account.suspended?
  31. %hr.spacer/
  32. %h3= t('auth.delete_account')
  33. %p.muted-hint= t('auth.delete_account_html', path: settings_delete_path)