1234567891011121314151617181920212223242526272829 |
- - content_for :page_title do
- = t('settings.delete')
- = simple_form_for @confirmation, url: settings_delete_path, method: :delete do |f|
- %p.hint= t('deletes.warning.before')
- %ul.hint
- - if current_user.confirmed? && current_user.approved?
- %li.warning-hint= t('deletes.warning.irreversible')
- %li.warning-hint= t('deletes.warning.username_unavailable')
- %li.warning-hint= t('deletes.warning.data_removal')
- %li.warning-hint= t('deletes.warning.caches')
- - else
- %li.positive-hint= t('deletes.warning.email_change_html', path: edit_user_registration_path)
- %li.positive-hint= t('deletes.warning.email_reconfirmation_html', path: new_user_confirmation_path)
- %li.positive-hint= t('deletes.warning.email_contact_html', email: Setting.site_contact_email)
- %li.positive-hint= t('deletes.warning.username_available')
- %p.hint= t('deletes.warning.more_details_html', terms_path: privacy_policy_path)
- %hr.spacer/
- - if current_user.encrypted_password.present?
- = f.input :password, wrapper: :with_block_label, input_html: { autocomplete: 'current-password' }, hint: t('deletes.confirm_password')
- - else
- = f.input :username, wrapper: :with_block_label, input_html: { autocomplete: 'off' }, hint: t('deletes.confirm_username')
- .actions
- = f.button :button, t('deletes.proceed'), type: :submit, class: 'negative'
|