2017-04-21 22:23:17 -04:00
|
|
|
- content_for :page_title do
|
|
|
|
= t('settings.two_factor_authentication')
|
|
|
|
|
2017-06-25 17:51:46 -04:00
|
|
|
- if current_user.otp_required_for_login
|
2019-09-18 10:37:27 -04:00
|
|
|
%p.hint
|
|
|
|
%span.positive-hint
|
|
|
|
= fa_icon 'check'
|
|
|
|
= ' '
|
|
|
|
= t 'two_factor_authentication.enabled'
|
2017-04-21 22:23:17 -04:00
|
|
|
|
2019-09-18 10:37:27 -04:00
|
|
|
%hr.spacer/
|
2017-04-21 22:23:17 -04:00
|
|
|
|
2017-06-25 17:51:46 -04:00
|
|
|
= simple_form_for @confirmation, url: settings_two_factor_authentication_path, method: :delete do |f|
|
2019-09-18 10:37:27 -04:00
|
|
|
.fields-group
|
|
|
|
= f.input :otp_attempt, wrapper: :with_block_label, hint: t('two_factor_authentication.code_hint'), label: t('simple_form.labels.defaults.otp_attempt'), input_html: { :autocomplete => 'off' }, required: true
|
2017-06-25 17:51:46 -04:00
|
|
|
|
|
|
|
.actions
|
2019-09-18 10:37:27 -04:00
|
|
|
= f.button :button, t('two_factor_authentication.disable'), type: :submit, class: 'negative'
|
2017-06-25 17:51:46 -04:00
|
|
|
|
2019-09-18 10:37:27 -04:00
|
|
|
%hr.spacer/
|
2017-06-25 17:51:46 -04:00
|
|
|
|
2019-09-18 10:37:27 -04:00
|
|
|
%h3= t('two_factor_authentication.recovery_codes')
|
|
|
|
%p.muted-hint= t('two_factor_authentication.lost_recovery_codes')
|
|
|
|
|
|
|
|
%hr.spacer/
|
|
|
|
|
|
|
|
.simple_form
|
|
|
|
= link_to t('two_factor_authentication.generate_recovery_codes'), settings_two_factor_authentication_recovery_codes_path, data: { method: :post }, class: 'block-button'
|
2017-06-25 17:51:46 -04:00
|
|
|
|
|
|
|
- else
|
|
|
|
.simple_form
|
|
|
|
%p.hint= t('two_factor_authentication.description_html')
|
|
|
|
|
2019-09-18 10:37:27 -04:00
|
|
|
%hr.spacer/
|
|
|
|
|
|
|
|
= link_to t('two_factor_authentication.setup'), settings_two_factor_authentication_path, data: { method: :post }, class: 'block-button'
|