28 lines
905 B
Text
28 lines
905 B
Text
<% content_for :title, "Sign In | Metamaps" %>
|
|
|
|
<h1 class="index">Sign In</h1>
|
|
|
|
<%= form_for(resource, :as => resource_name, :url => session_path(resource_name), :html => { :method => :post, :class => "new_user centerGreyForm" }) do |f| %>
|
|
<h3>Sign in</h3>
|
|
|
|
<div><%= f.label :email %>
|
|
<%= f.email_field :email, :autofocus => true %></div>
|
|
|
|
<div><%= f.label :password %>
|
|
<%= f.password_field :password %></div>
|
|
|
|
<% if devise_mapping.rememberable? -%>
|
|
<div><%= f.check_box :remember_me %> <%= f.label :remember_me %><div class="clearfloat"></div></div>
|
|
<% end -%>
|
|
|
|
<div><%= f.submit "Sign in" %></div>
|
|
|
|
<br />
|
|
<%- if devise_mapping.recoverable? && controller_name != 'passwords' %>
|
|
<%= link_to "Forgot your password?", new_password_path(resource_name) %><br />
|
|
<% end -%>
|
|
<br />
|
|
<div>Don't have an account?<br /><a href="/request">Request an Invite</a></div>
|
|
<% end %>
|
|
|
|
|