debian-mirror-gitlab/app/views/devise/sessions/new.html.haml

24 lines
819 B
Text
Raw Normal View History

2015-09-11 14:41:01 +05:30
- page_title "Sign in"
2017-08-17 22:00:37 +05:30
2019-03-02 22:35:43 +05:30
#signin-container
2016-11-03 12:29:30 +05:30
- if form_based_providers.any?
= render 'devise/shared/tabs_ldap'
- else
= render 'devise/shared/tabs_normal'
.tab-content
2018-03-17 18:26:18 +05:30
- if password_authentication_enabled_for_web? || ldap_enabled? || crowd_enabled?
2016-11-03 12:29:30 +05:30
= render 'devise/shared/signin_box'
2014-09-02 18:07:02 +05:30
2016-11-03 12:29:30 +05:30
-# Signup only makes sense if you can also sign-in
2018-03-17 18:26:18 +05:30
- if allow_signup?
2015-04-26 12:48:37 +05:30
= render 'devise/shared/signup_box'
2014-09-02 18:07:02 +05:30
2015-04-26 12:48:37 +05:30
-# Show a message if none of the mechanisms above are enabled
2018-03-17 18:26:18 +05:30
- if !password_authentication_enabled_for_web? && !ldap_enabled? && !(omniauth_enabled? && devise_mapping.omniauthable?)
2015-04-26 12:48:37 +05:30
%div
No authentication methods configured.
2016-11-03 12:29:30 +05:30
- if omniauth_enabled? && devise_mapping.omniauthable? && button_based_providers_enabled?
.clearfix
= render 'devise/shared/omniauth_box'