summaryrefslogtreecommitdiff
path: root/app/views/groups/settings/_two_factor_auth.html.haml
blob: c49e61c8a312e7f3a1c3ff01378a9fafd501950b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
- docs_link_url = help_page_path('security/two_factor_authentication', anchor: 'enforcing-2fa-for-all-users-in-a-group')
- docs_link_start = '<a href="%{url}" target="_blank" rel="noopener noreferrer">'.html_safe % { url: docs_link_url }

%h5= _('Two-factor authentication')

%p= s_('Check the %{docs_link_start}documentation%{docs_link_end}.').html_safe % { docs_link_start: docs_link_start, docs_link_end: '</a>'.html_safe }

.form-group
  .form-check
    = f.check_box :require_two_factor_authentication, class: 'form-check-input', data: { qa_selector: 'require_2fa_checkbox' }
    = f.label :require_two_factor_authentication, class: 'form-check-label' do
      %span= _('Require all users in this group to setup Two-factor authentication')
.form-group
  = f.label :two_factor_grace_period, _('Time before enforced'), class: 'label-bold'
  = f.text_field :two_factor_grace_period, class: 'form-control form-control-sm w-auto'
  .form-text.text-muted= _('Amount of time (in hours) that users are allowed to skip forced configuration of two-factor authentication')