2013-01-07 09:04:09 +01:00
|
|
|
.container
|
2013-06-26 15:59:56 +02:00
|
|
|
%h2.text-center
|
2013-01-17 16:27:03 +01:00
|
|
|
Sign In
|
|
|
|
|
.row-fluid
|
|
|
|
|
.well.span3.offset2
|
2013-01-07 09:04:09 +01:00
|
|
|
= semantic_form_for(resource, :as => resource_name, :url => session_path(resource_name)) do |f|
|
|
|
|
|
= f.input :email
|
|
|
|
|
= f.input :password
|
|
|
|
|
- if devise_mapping.rememberable?
|
2013-01-17 16:27:03 +01:00
|
|
|
= f.input :remember_me, :as=> :boolean, :label => false
|
|
|
|
|
= f.action :submit, :as => :button, :label => "Sign In", :button_html => {:class => "btn btn-primary"}
|
|
|
|
|
.well.span3.offset2
|
|
|
|
|
%h4
|
|
|
|
|
No account?
|
2013-01-07 09:04:09 +01:00
|
|
|
= render "devise/shared/links"
|