2012-06-18 17:40:14 +02:00
|
|
|
<% unless ldap_enable? -%>
|
|
|
|
|
|
|
|
<%= form_for(resource, :as => resource_name, :url => session_path(resource_name), :html => { :class => "login-box" }) do |f| %>
|
2012-06-15 23:07:53 +02:00
|
|
|
<%= image_tag "login-logo.png", :width => "304", :height => "66", :class => "login-logo", :alt => "Login Logo" %>
|
|
|
|
|
2012-06-18 17:40:14 +02:00
|
|
|
<%= f.text_field :email, :class => "text top", :placeholder => "Email" %>
|
|
|
|
<%= f.password_field :password, :class => "text bottom", :placeholder => "Password" %>
|
2012-06-15 23:07:53 +02:00
|
|
|
|
|
|
|
<% 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/>
|
2012-06-18 17:40:14 +02:00
|
|
|
<%= f.submit "Sign in", :class => "primary btn" %>
|
|
|
|
<div class="right"> <%= render :partial => "devise/shared/links" %></div>
|
2012-03-24 00:01:36 +01:00
|
|
|
|
2012-06-18 17:40:14 +02:00
|
|
|
<%- 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 -%>
|
2012-03-24 00:01:36 +01:00
|
|
|
<% end -%>
|
2012-06-15 23:07:53 +02:00
|
|
|
|
2012-06-18 17:40:14 +02:00
|
|
|
<% end %>
|
|
|
|
|
|
|
|
<% else %>
|
|
|
|
<%= render :partial => 'devise/sessions/new_ldap' %>
|
2011-10-28 17:25:00 +02:00
|
|
|
<% end %>
|