You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
678 B
24 lines
678 B
<div id="box"> |
|
<div class="block" id="block-login"> |
|
<h2>Sign in</h2> |
|
<div class="content login"> |
|
|
|
<%= form_for(resource, :as => resource_name, :url => session_path(resource_name)) do |f| %> |
|
<div><%= f.label :email %><br /> |
|
<%= f.email_field :email %></div> |
|
|
|
<div><%= f.label :password %><br /> |
|
<%= f.password_field :password %></div> |
|
|
|
<% if devise_mapping.rememberable? -%> |
|
<div><%= f.check_box :remember_me %> <%= f.label :remember_me %></div> |
|
<% end -%> |
|
|
|
<div><%= f.submit "Sign in" %></div> |
|
<% end %> |
|
|
|
<%= render :partial => "devise/shared/links" %> |
|
|
|
</div> |
|
</div> |
|
</div> |