summaryrefslogtreecommitdiff
path: root/app/views/devise/sessions/new.html.erb
blob: f5bd9575705b217580523f2c0f75b6180fc5550e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<%= 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" %>
  <%= f.text_field :email, :class => "text top", :placeholder => "Email" %>
  <%= f.password_field :password, :class => "text bottom", :placeholder => "Password"  %>

  <% if devise_mapping.rememberable? -%>
    <div><%= f.check_box :remember_me %> <%= f.label :remember_me %></div>
  <% end -%>
  <br/>
  <%= f.submit "Sign in", :class => "grey-button" %>
  <div class="right"> <%= render :partial => "devise/shared/links" %></div>
  <% if ldap_enable? -%>
    <p><%= link_to "via LDAP", user_omniauth_authorize_path(:ldap)%></p>
  <% end -%>
<% end %>