2011-10-30 23:02:41 +00:00
|
|
|
- title t('.title')
|
|
|
|
|
2011-10-31 23:44:23 +00:00
|
|
|
= form_tag cross_domain_sessions_url(:host => @target, :port => request.port), :method => 'post' do
|
2011-10-30 23:02:41 +00:00
|
|
|
|
2011-11-04 15:55:51 +00:00
|
|
|
= hidden_field_tag 'token', current_locomotive_account.switch_site_token
|
2011-10-30 23:02:41 +00:00
|
|
|
|
|
|
|
.inner
|
|
|
|
%p.notice= t('.notice')
|
|
|
|
|
|
|
|
.footer
|
2011-12-12 09:35:42 +00:00
|
|
|
= submit_tag t('locomotive.buttons.switch_to_site')
|
2011-10-30 23:02:41 +00:00
|
|
|
|
|
|
|
:javascript
|
2011-12-12 09:35:42 +00:00
|
|
|
$(document).ready(function() { setTimeout(function() { $('form').submit(); }, 1000); });
|