moved the ldap login to its own partial and cleaned up the forms a little bit
This commit is contained in:
parent
50dabb5452
commit
848b5e99fc
2 changed files with 56 additions and 37 deletions
40
app/views/devise/sessions/_new_ldap.html.erb
Normal file
40
app/views/devise/sessions/_new_ldap.html.erb
Normal file
|
@ -0,0 +1,40 @@
|
|||
<%#= form_for(resource, :as => resource_name, :url => user_omniauth_callback_path(:ldap), :html => { :class => "login-box", :id => 'new_ldap_user' }) do |f| %>
|
||||
<%= form_tag(user_omniauth_callback_path(:ldap), :class => "login-box", :id => 'new_ldap_user' ) do %>
|
||||
<%= 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"} %>
|
||||
|
||||
<br/>
|
||||
<%= submit_tag "LDAP Sign in", :class => "primary btn" %>
|
||||
|
||||
<%- if devise_mapping.omniauthable? %>
|
||||
<%- (resource_class.omniauth_providers - [:ldap]).each do |provider| %>
|
||||
<hr/>
|
||||
<%= link_to "Sign in with #{provider.to_s.titleize}", omniauth_authorize_path(resource_name, provider), :class => "btn primary" %><br />
|
||||
<% end -%>
|
||||
<% end -%>
|
||||
|
||||
<hr/>
|
||||
<a href="#" id="other_form_toggle" onclick="javascript:$('#new_user').toggle();">Other Sign in</a>
|
||||
<!-- inline for right now just to illustrate -->
|
||||
<script type="text/javascript">
|
||||
$(function() {
|
||||
$('#new_user').toggle();
|
||||
});
|
||||
</script>
|
||||
<% end %>
|
||||
|
||||
|
||||
<%= form_for(resource, :as => resource_name, :url => session_path(resource_name), :html => { :class => "login-box" }) do |f| %>
|
||||
<%= f.text_field :email, :class => "text top", :placeholder => "Email" %>
|
||||
<%= f.password_field :password, :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 "Sign in", :class => "primary btn" %>
|
||||
<div class="right"> <%= render :partial => "devise/shared/links" %></div>
|
||||
|
||||
<% end %>
|
|
@ -1,48 +1,27 @@
|
|||
<% 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| %>
|
||||
<% unless ldap_enable? -%>
|
||||
|
||||
<%= 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" %>
|
||||
|
||||
<%= text_field_tag :username, nil, {:class => "text top", :placeholder => "LDAP Login"} %>
|
||||
<%= password_field_tag :password, nil, {:class => "text bottom", :placeholder => "Password"} %>
|
||||
<%= f.text_field :email, :class => "text top", :placeholder => "Email" %>
|
||||
<%= f.password_field :password, :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 %>
|
||||
<%= f.submit "Sign in", :class => "primary btn" %>
|
||||
<div class="right"> <%= render :partial => "devise/shared/links" %></div>
|
||||
|
||||
<%= form_for(resource, :as => resource_name, :url => session_path(resource_name), :html => { :class => "login-box" }) do |f| %>
|
||||
<% 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" %>
|
||||
|
||||
<% 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 "Sign in", :class => "primary btn" %>
|
||||
<div class="right"> <%= render :partial => "devise/shared/links" %></div>
|
||||
|
||||
<%- if devise_mapping.omniauthable? %>
|
||||
<%- resource_class.omniauth_providers.each do |provider| %>
|
||||
<hr/>
|
||||
<%= link_to "Sign in with #{provider.to_s.titleize}", omniauth_authorize_path(resource_name, provider), :class => "btn primary" %><br />
|
||||
<%- if devise_mapping.omniauthable? %>
|
||||
<%- resource_class.omniauth_providers.each do |provider| %>
|
||||
<hr/>
|
||||
<%= link_to "Sign in with #{provider.to_s.titleize}", omniauth_authorize_path(resource_name, provider), :class => "btn primary" %><br />
|
||||
<% end -%>
|
||||
<% end -%>
|
||||
<% end -%>
|
||||
|
||||
<% end %>
|
||||
|
||||
<% else %>
|
||||
<%= render :partial => 'devise/sessions/new_ldap' %>
|
||||
<% end %>
|
||||
|
|
Loading…
Reference in a new issue