debian-mirror-gitlab/app/views/admin/sessions/_two_factor_otp.html.haml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
695 B
Text
Raw Normal View History

2020-11-24 15:15:51 +05:30
= form_tag(admin_session_path, { method: :post, class: "edit_user gl-show-field-errors js-2fa-form #{'hidden' if current_user.two_factor_webauthn_u2f_enabled?}" }) do
2020-04-08 14:13:33 +05:30
.form-group
= label_tag :user_otp_attempt, _('Two-Factor Authentication code')
= text_field_tag 'user[otp_attempt]', nil, class: 'form-control', required: true, autofocus: true, autocomplete: 'off', title: _('This field is required.')
%p.form-text.text-muted.hint
= _("Enter the code from the two-factor app on your mobile device. If you've lost your device, you may enter one of your recovery codes.")
.submit-container.move-submit-down
2022-07-16 23:28:13 +05:30
= submit_tag 'Verify code', class: 'gl-button btn btn-confirm'