672a68d372
When sign-in is disabled: - skip password expiration checks - prevent password reset requests - don’t show Password tab in User Settings - don’t allow login with username/password for Git over HTTP requests - render 404 on requests to Profiles::PasswordsController
23 lines
828 B
Text
23 lines
828 B
Text
- page_title "Sign in"
|
|
|
|
%div
|
|
- if form_based_providers.any?
|
|
= render 'devise/shared/tabs_ldap'
|
|
- else
|
|
= render 'devise/shared/tabs_normal'
|
|
.tab-content
|
|
- if password_authentication_enabled? || ldap_enabled? || crowd_enabled?
|
|
= render 'devise/shared/signin_box'
|
|
|
|
-# Signup only makes sense if you can also sign-in
|
|
- if password_authentication_enabled? && signup_enabled?
|
|
= render 'devise/shared/signup_box'
|
|
|
|
-# Show a message if none of the mechanisms above are enabled
|
|
- if !password_authentication_enabled? && !ldap_enabled? && !(omniauth_enabled? && devise_mapping.omniauthable?)
|
|
%div
|
|
No authentication methods configured.
|
|
|
|
- if omniauth_enabled? && devise_mapping.omniauthable? && button_based_providers_enabled?
|
|
.clearfix
|
|
= render 'devise/shared/omniauth_box'
|