1
0
Fork 0
mirror of https://github.com/heartcombo/devise.git synced 2022-11-09 12:18:31 -05:00
heartcombo--devise/app/views/devise/sessions/new.html.erb

17 lines
468 B
Text
Raw Normal View History

2009-10-11 22:11:58 -03:00
<h2>Sign in</h2>
2010-03-11 18:39:32 +01:00
<%= form_for(resource_name, resource, :url => session_path(resource_name)) do |f| %>
2010-02-08 20:38:47 +01:00
<p><%= f.label :email %></p>
<p><%= f.text_field :email %></p>
2009-10-11 22:11:58 -03:00
2010-02-08 20:38:47 +01:00
<p><%= f.label :password %></p>
<p><%= f.password_field :password %></p>
2009-10-11 22:11:58 -03:00
2010-02-08 20:38:47 +01:00
<% if devise_mapping.rememberable? -%>
<p><%= f.check_box :remember_me %> <%= f.label :remember_me %></p>
<% end -%>
2010-02-08 20:38:47 +01:00
<p><%= f.submit "Sign in" %></p>
2010-03-11 18:39:32 +01:00
<% end %>
<%= render :partial => "devise/shared/links" %>