The code powering m.abunchtell.com https://m.abunchtell.com
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 

33 行
1.4 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 :password, wrapper: :with_label, input_html: { 'aria-label' => t('simple_form.labels.defaults.new_password'), :autocomplete => 'off' }, hint: false
  10. .fields-group
  11. = 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' }
  12. .fields-group
  13. = f.input :current_password, wrapper: :with_label, input_html: { 'aria-label' => t('simple_form.labels.defaults.current_password'), :autocomplete => 'off' }, required: true
  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)