summaryrefslogtreecommitdiff
path: root/app/views/admin/sessions/new.html.haml
blob: 67c607270a538e035f2a51a652b136c4ebf72a99 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
- @hide_breadcrumbs = true
- page_title _('Enter Admin Mode')

.row.justify-content-center
  .col-md-5.new-session-forms-container
    .login-page
      #signin-container
        - if any_form_based_providers_enabled?
          = render 'devise/shared/tabs_ldap', show_password_form: allow_admin_mode_password_authentication_for_web?, render_signup_link: false
        - else
          = render 'devise/shared/tabs_normal', tab_title: _('Enter Admin Mode'), render_signup_link: false
        .tab-content
          - if allow_admin_mode_password_authentication_for_web? || ldap_sign_in_enabled? || crowd_enabled?
            = render 'admin/sessions/signin_box'

        -# Show a message if none of the mechanisms above are enabled
        - if !allow_admin_mode_password_authentication_for_web? && !ldap_sign_in_enabled? && !omniauth_enabled?
          .gl-mt-3.center
            = _('No authentication methods configured.')

        - if omniauth_enabled? && button_based_providers_enabled?
          .clearfix
            = render 'devise/shared/omniauth_box', hide_remember_me: true