2017-01-28 06:28:46 +11:00
|
|
|
- content_for :page_title do
|
|
|
|
= t('settings.two_factor_auth')
|
|
|
|
|
2017-01-28 13:56:10 +11:00
|
|
|
.simple_form
|
2017-04-09 06:20:08 +10:00
|
|
|
%p.hint= t('two_factor_auth.description_html')
|
2017-02-14 06:56:03 +11:00
|
|
|
|
2017-04-09 06:20:08 +10:00
|
|
|
- if current_user.otp_required_for_login
|
2017-01-28 06:28:46 +11:00
|
|
|
= link_to t('two_factor_auth.disable'), disable_settings_two_factor_auth_path, data: { method: 'POST' }, class: 'block-button'
|
2017-01-28 13:56:10 +11:00
|
|
|
- else
|
2017-04-09 06:20:08 +10:00
|
|
|
= link_to t('two_factor_auth.setup'), new_settings_two_factor_auth_path, class: 'block-button'
|
2017-04-15 21:26:03 +10:00
|
|
|
|
|
|
|
- if current_user.otp_required_for_login
|
2017-04-16 12:32:57 +10:00
|
|
|
%p
|
|
|
|
|
2017-04-15 21:26:03 +10:00
|
|
|
.simple_form
|
|
|
|
%p.hint= t('two_factor_auth.lost_recovery_codes')
|
|
|
|
= link_to t('two_factor_auth.generate_recovery_codes'), recovery_codes_settings_two_factor_auth_path, data: { method: 'POST' }, class: 'block-button'
|