2010-10-27 00:11:44 +00:00
|
|
|
- content_for :head_title do
|
2011-10-30 23:02:41 +00:00
|
|
|
= t('locomotive.installation.common.title')
|
2010-10-27 00:11:44 +00:00
|
|
|
|
|
|
|
- title t('.title')
|
|
|
|
|
2011-04-05 00:18:17 +00:00
|
|
|
- if @step_done.blank?
|
2011-10-31 23:44:23 +00:00
|
|
|
= semantic_form_for(@account, :url => installation_step_url(1)) do |f|
|
2011-04-05 00:18:17 +00:00
|
|
|
.inner
|
|
|
|
= f.inputs do
|
|
|
|
= f.input :name, :label => t('.name'), :required => false
|
|
|
|
= f.input :email, :label => t('.email'), :required => false
|
|
|
|
= f.input :password, :label => t('.password'), :required => false
|
|
|
|
= f.input :password_confirmation, :label => t('.password_confirmation'), :required => false
|
2010-10-27 00:11:44 +00:00
|
|
|
|
2011-04-05 00:18:17 +00:00
|
|
|
.footer
|
2011-11-03 13:01:08 +00:00
|
|
|
= submit_tag t('.next')
|
2011-04-05 00:18:17 +00:00
|
|
|
- else
|
|
|
|
.inner
|
|
|
|
%p.done
|
|
|
|
!= @step_done
|
2010-10-27 00:11:44 +00:00
|
|
|
|
2011-04-05 00:18:17 +00:00
|
|
|
.footer
|
|
|
|
= next_installation_step_link(2)
|