2020-06-23 00:09:42 +05:30
|
|
|
#js-authenticate-token-2fa
|
2021-04-29 21:17:54 +05:30
|
|
|
%a.gl-button.btn.btn-block.btn-confirm#js-login-2fa-device{ href: '#' }= _("Sign in via 2FA code")
|
2016-06-16 23:09:34 +05:30
|
|
|
|
2020-06-23 00:09:42 +05:30
|
|
|
%script#js-authenticate-token-2fa-in-progress{ type: "text/template" }
|
2019-02-15 15:39:39 +05:30
|
|
|
%p= _("Trying to communicate with your device. Plug it in (if you haven't already) and press the button on the device now.")
|
2016-06-16 23:09:34 +05:30
|
|
|
|
2020-06-23 00:09:42 +05:30
|
|
|
%script#js-authenticate-token-2fa-error{ type: "text/template" }
|
2016-06-16 23:09:34 +05:30
|
|
|
%div
|
2020-11-24 15:15:51 +05:30
|
|
|
%p <%= error_message %> (<%= error_name %>)
|
2021-04-29 21:17:54 +05:30
|
|
|
%a.btn.btn-default.gl-button.btn-block#js-token-2fa-try-again= _("Try again?")
|
2016-06-16 23:09:34 +05:30
|
|
|
|
2020-06-23 00:09:42 +05:30
|
|
|
%script#js-authenticate-token-2fa-authenticated{ type: "text/template" }
|
2016-06-16 23:09:34 +05:30
|
|
|
%div
|
2020-06-23 00:09:42 +05:30
|
|
|
%p= _("We heard back from your device. You have been authenticated.")
|
|
|
|
= form_tag(target_path, method: :post, id: 'js-login-token-2fa-form') do |f|
|
|
|
|
- if render_remember_me
|
|
|
|
- resource_params = params[resource_name].presence || params
|
|
|
|
= hidden_field_tag 'user[remember_me]', resource_params.fetch(:remember_me, 0)
|
2016-06-16 23:09:34 +05:30
|
|
|
= hidden_field_tag 'user[device_response]', nil, class: 'form-control', required: true, id: "js-device-response"
|