gitlabhq/app/views/devise/sessions/new.html.erb

23 lines
1.2 KiB
Plaintext
Raw Normal View History

2011-10-28 17:25:00 +02:00
<%= 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" %>
2011-10-28 17:29:52 +02:00
<%= f.text_field :email, :class => "text top", :placeholder => "Email" %>
<%= f.password_field :password, :class => "text bottom", :placeholder => "Password" %>
2011-10-08 23:36:38 +02:00
2011-10-28 17:25:00 +02:00
<% if devise_mapping.rememberable? -%>
2012-04-10 19:06:17 +02:00
<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>
2011-10-28 17:25:00 +02:00
<% end -%>
<br/>
2012-01-27 18:58:10 +01:00
<%= f.submit "Sign in", :class => "primary btn" %>
2011-10-28 17:25:00 +02:00
<div class="right"> <%= render :partial => "devise/shared/links" %></div>
2012-03-24 00:01:36 +01: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 -%>
<% end -%>
2012-01-28 14:23:17 +01:00
<% if ldap_enable? -%>
<p><%= link_to "via LDAP", user_omniauth_authorize_path(:ldap)%></p>
<% end -%>
2011-10-28 17:25:00 +02:00
<% end %>