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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/devise/sessions/new.html.haml')
-rw-r--r--app/views/devise/sessions/new.html.haml18
1 files changed, 0 insertions, 18 deletions
diff --git a/app/views/devise/sessions/new.html.haml b/app/views/devise/sessions/new.html.haml
deleted file mode 100644
index 89e4e229ac0..00000000000
--- a/app/views/devise/sessions/new.html.haml
+++ /dev/null
@@ -1,18 +0,0 @@
-%div
- - if signin_enabled? || ldap_enabled?
- = render 'devise/shared/signin_box'
-
- -# Omniauth fits between signin/ldap signin and signup and does not have a surrounding box
- - if Gitlab.config.omniauth.enabled && devise_mapping.omniauthable?
- .clearfix.prepend-top-20
- = render 'devise/shared/omniauth_box'
-
- -# Signup only makes sense if you can also sign-in
- - if signin_enabled? && signup_enabled?
- .prepend-top-20
- = render 'devise/shared/signup_box'
-
- -# Show a message if none of the mechanisms above are enabled
- - if !signin_enabled? && !ldap_enabled? && !(Gitlab.config.omniauth.enabled && devise_mapping.omniauthable?)
- %div
- No authentication methods configured.