Welcome to mirror list, hosted at ThFree Co, Russian Federation.

new.html.haml « sessions « admin « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4ce1629bb53dd49b9d103b4089bd49bc753c883c (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?
          .prepend-top-default.center
            = _('No authentication methods configured.')

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