闭社主体 forked from https://github.com/tootsuite/mastodon
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.

33 lines
1.5 KiB

  1. - content_for :page_title do
  2. = t('auth.security')
  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_seamless_external_login? || resource.encrypted_password.present?
  6. .fields-group
  7. = f.input :email, wrapper: :with_label, input_html: { 'aria-label' => t('simple_form.labels.defaults.email') }, required: true, hint: false
  8. .fields-group
  9. = f.input :current_password, wrapper: :with_label, input_html: { 'aria-label' => t('simple_form.labels.defaults.current_password'), :autocomplete => 'off' }, required: true
  10. .fields-group
  11. = 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' }, hint: false
  12. .fields-group
  13. = 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' }
  14. .actions
  15. = f.button :button, t('generic.save_changes'), type: :submit
  16. - else
  17. %p.hint= t('users.seamless_external_login')
  18. %hr.spacer/
  19. = render 'sessions'
  20. - if open_deletion?
  21. %hr.spacer/
  22. %h4= t('auth.delete_account')
  23. %p.muted-hint= t('auth.delete_account_html', path: settings_delete_path)