- return unless group.parent_allows_two_factor_authentication? - docs_link_url = help_page_path('security/two_factor_authentication', anchor: 'enforce-2fa-for-all-users-in-a-group') - docs_link_start = ''.html_safe % { url: docs_link_url } %h5= _('Two-factor authentication') %p= s_('%{docs_link_start}What is two-factor authentication?%{docs_link_end}').html_safe % { docs_link_start: docs_link_start, docs_link_end: ''.html_safe } .form-group = f.gitlab_ui_checkbox_component :require_two_factor_authentication, _('All users in this group must set up two-factor authentication'), checkbox_options: { data: { qa_selector: 'require_2fa_checkbox' } } .form-group = f.label :two_factor_grace_period, _('Delay 2FA enforcement (hours)') = f.text_field :two_factor_grace_period, class: 'form-control form-control-sm w-auto gl-form-input gl-mb-3' .form-text.text-muted= _("The maximum amount of time users have to set up two-factor authentication before it's enforced.") - unless group.has_parent? .form-group = f.gitlab_ui_checkbox_component :allow_mfa_for_subgroups, _('Subgroups can set up their own two-factor authentication rules'), checkbox_options: { checked: group.namespace_settings&.allow_mfa_for_subgroups }