2017-01-27 11:28:46 -08:00
|
|
|
- content_for :page_title do
|
|
|
|
= t('settings.two_factor_auth')
|
|
|
|
|
2017-01-27 18:56:10 -08:00
|
|
|
.simple_form
|
|
|
|
- if current_user.otp_required_for_login
|
2017-03-26 04:22:38 -07:00
|
|
|
%p.hint= t('two_factor_auth.instructions_html')
|
2017-01-27 11:28:46 -08:00
|
|
|
|
2017-01-27 18:56:10 -08:00
|
|
|
.qr-code= raw @qrcode.as_svg(padding: 0, module_size: 5)
|
2017-01-27 11:28:46 -08:00
|
|
|
|
2017-03-26 04:22:38 -07:00
|
|
|
%p.hint= t('two_factor_auth.plaintext_secret_html', secret: current_user.otp_secret)
|
2017-02-13 11:56:03 -08:00
|
|
|
|
2017-03-26 04:22:38 -07:00
|
|
|
%p.hint= t('two_factor_auth.warning')
|
2017-02-13 11:56:03 -08:00
|
|
|
|
2017-01-27 11:28:46 -08:00
|
|
|
= link_to t('two_factor_auth.disable'), disable_settings_two_factor_auth_path, data: { method: 'POST' }, class: 'block-button'
|
2017-01-27 18:56:10 -08:00
|
|
|
- else
|
2017-03-26 04:22:38 -07:00
|
|
|
%p.hint= t('two_factor_auth.description_html')
|
2017-01-27 11:28:46 -08:00
|
|
|
= link_to t('two_factor_auth.enable'), enable_settings_two_factor_auth_path, data: { method: 'POST' }, class: 'block-button'
|