logo

mastofe

My custom branche(s) on git.pleroma.social/pleroma/mastofe git clone https://hacktivis.me/git/mastofe.git

edit.html.haml (1392B)


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