2017-06-14 18:01:27 +02:00
|
|
|
- content_for :page_title do
|
|
|
|
= t('settings.delete')
|
|
|
|
|
|
|
|
= simple_form_for @confirmation, url: settings_delete_path, method: :delete do |f|
|
|
|
|
.warning
|
|
|
|
%strong
|
|
|
|
= fa_icon('warning')
|
|
|
|
= t('deletes.warning_title')
|
|
|
|
= t('deletes.warning_html')
|
|
|
|
|
|
|
|
%p.hint= t('deletes.description_html')
|
|
|
|
|
2017-07-29 14:20:31 +02:00
|
|
|
= f.input :password, placeholder: t('simple_form.labels.defaults.current_password'), input_html: { 'aria-label' => t('simple_form.labels.defaults.current_password'), :autocomplete => 'off' }, hint: t('deletes.confirm_password')
|
2017-06-14 18:01:27 +02:00
|
|
|
|
|
|
|
.actions
|
|
|
|
= f.button :button, t('deletes.proceed'), type: :submit, class: 'negative'
|