mirror of
https://git.bsd.gay/fef/nyastodon.git
synced 2024-11-01 19:31:12 +01:00
57a794d8eb
* Fix autocomplete in two_factor.html.haml * Fix autocomplete in registrations edit.html.haml * Fix autocomplete in passwords edit.html.haml * Fix autocomplete in _registration.html.haml * Fix autocomplete in new.html.haml * Fix autocomplete in show.html.haml * Add autocomplete option to sessions new.html.haml * Add autocomplete option to 2FA new.html.haml * Add autocomplete option to 2FA show.html.haml
16 lines
619 B
Text
16 lines
619 B
Text
- 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')
|
|
|
|
= 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')
|
|
|
|
.actions
|
|
= f.button :button, t('deletes.proceed'), type: :submit, class: 'negative'
|