engine/app/views/locomotive/sessions/new.html.haml

18 lines
494 B
Plaintext
Raw Normal View History

2010-04-22 23:52:11 +00:00
- title t('.title')
= semantic_form_for(resource, :as => resource_name, :url => locomotive_account_session_path) do |f|
= f.hidden_field :remember_me, :value => 'true'
2010-04-22 23:52:11 +00:00
.inner
= flash_message
2010-04-22 23:52:11 +00:00
= f.inputs do
= f.input :email, :label => t('.email'), :required => false
= f.input :password, :label => t('.password'), :required => false
%p.link
= link_to t('.link'), new_locomotive_account_password_path
2010-04-22 23:52:11 +00:00
.footer
= submit_tag t('locomotive.buttons.login')