about summary refs log tree commit diff
path: root/app/views/settings/deletes/show.html.haml
blob: c08ee85b0b3bafcbe665b7462ff7e3e0e5621a72 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
- 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'