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
path: root/app
diff options
context:
space:
mode:
authorjdamick <jeffreydamick@gmail.com>2012-06-16 01:07:53 +0400
committerjdamick <jeffreydamick@gmail.com>2012-06-18 19:45:49 +0400
commit50dabb5452e86bfe056c4e1d54abd2dc7c1a8463 (patch)
tree58bfa78f00188d5d9f2ee68414ffb6c2ad9faa7d /app
parenteb00cb69dd8bf1b0db7d84e4c27076b1b8d23e09 (diff)
customizing the user login screen for primarily ldap authentication
Diffstat (limited to 'app')
-rw-r--r--app/views/devise/sessions/new.html.erb34
1 files changed, 30 insertions, 4 deletions
diff --git a/app/views/devise/sessions/new.html.erb b/app/views/devise/sessions/new.html.erb
index a2956eb31d9..89b2569df60 100644
--- a/app/views/devise/sessions/new.html.erb
+++ b/app/views/devise/sessions/new.html.erb
@@ -1,5 +1,33 @@
+<% if ldap_enable? -%>
+ <%= form_for(resource, :as => resource_name, :url => user_omniauth_callback_path(:ldap), :html => { :class => "login-box", :id => 'new_ldap_user' }) do |f| %>
+ <%= image_tag "login-logo.png", :width => "304", :height => "66", :class => "login-logo", :alt => "Login Logo" %>
+
+ <%= text_field_tag :username, nil, {:class => "text top", :placeholder => "LDAP Login"} %>
+ <%= password_field_tag :password, nil, {:class => "text bottom", :placeholder => "Password"} %>
+
+ <% if devise_mapping.rememberable? -%>
+ <div class="clearfix inputs-list"> <label class="checkbox remember_me" for="user_remember_me"><%= f.check_box :remember_me %><span>Remember me</span></label></div>
+ <% end -%>
+ <br/>
+ <%= f.submit "LDAP Sign in", :class => "primary btn" %>
+ <hr/>
+ <a href="#" id="admin_form_toggle" onclick="javascript:$('#new_user').toggle();">Admin Sign in</a>
+ <!-- inline right just to illustrate -->
+ <script type="text/javascript">
+ $(function() {
+ $('#new_user').toggle();
+ });
+ </script>
+ <% end %>
+<% end %>
+
<%= form_for(resource, :as => resource_name, :url => session_path(resource_name), :html => { :class => "login-box" }) do |f| %>
- <%= image_tag "login-logo.png", :width => "304", :height => "66", :class => "login-logo", :alt => "Login Logo" %>
+ <% unless ldap_enable? %>
+ <%= image_tag "login-logo.png", :width => "304", :height => "66", :class => "login-logo", :alt => "Login Logo" %>
+ <% else %>
+ <!-- <a href="#" id="ldap_form_toggle" onclick="javascript:$('#new_ldap_user').toggle();">LDAP Sign in</a> -->
+ <% end %>
+
<%= f.text_field :email, :class => "text top", :placeholder => "Email" %>
<%= f.password_field :password, :class => "text bottom", :placeholder => "Password" %>
@@ -16,7 +44,5 @@
<%= link_to "Sign in with #{provider.to_s.titleize}", omniauth_authorize_path(resource_name, provider), :class => "btn primary" %><br />
<% end -%>
<% end -%>
- <% if ldap_enable? -%>
- <p><%= link_to "via LDAP", user_omniauth_authorize_path(:ldap)%></p>
- <% end -%>
+
<% end %>