Created
July 25, 2012 15:12
-
-
Save superacidjax/3176693 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#signup.container.main | |
.mainInner | |
%h1 Sign Up | |
.description | |
%p Fill out the form below and get started with your free trial today. You'll have 5 video interviews available. | |
%p If you'd like to continue using the platform after your trial expires, simply upgrade your account and none of your information will be lost. | |
%p | |
By clicking Get Started, you agree to the | |
= link_to("Terms of Service", terms_support_path) | |
and the | |
= link_to("Privacy Policy.", privacy_support_path) | |
.notification.notice | |
Fields marked with an asterisk (*) are required. | |
= form_for (@user) do |f| | |
%fieldset | |
%ol | |
%li.input | |
= f.label :name, "Full Name" | |
= f.text_field :name | |
= f.label :email, "Work Email" | |
= f.email_field :email | |
= f.label :password | |
= f.password_field :password | |
= f.label :password_confirmation, "Confirm Password" | |
= f.password_field :password_confirmation | |
= f.label :company | |
= f.text_field :company | |
= f.label :contact_number | |
= f.telephone_field :contact_number | |
= f.label :number_employees, "Number of employees" | |
= f.text_field :number_employees | |
= f.label :access_code, "Access Code (if applicable)" | |
= f.text_field :access_code | |
%li.buttons | |
= f.submit "Get Started", class: "a.buttonLarge" | |
%span No credit card required | |
%ul#steps | |
%li#step1.active | |
%span 1 | |
Sign Up | |
%li#step2 | |
%span 2 | |
Activate | |
%li#step3 | |
%span 3 | |
Create Position | |
/ | |
.container.try_it_for_free.clearfix.main_container{:style => 'min-height: 100px !important'} | |
.left_column.clearfix | |
.padding | |
.title | |
Sign Up for a Free Trial | |
.description | |
Fill out the form below and get started with your free trial today. You'll have 5 video interviews available. | |
If you'd like to continue using the platform after your trial expires, simply upgrade your account and none of | |
your information will be lost. | |
.note | |
Fields marked with an asterisk (*) are required. | |
= form_tag '#', :class => 'clearfix form' do | |
.clearfix | |
.control-group.form_left | |
= '<label for="full_name">Full Name <abbr title="required">*</abbr></label>'.html_safe | |
= text_field_tag 'name' | |
.control-group.form_right | |
= '<label for="email">Work Email <abbr title="required">*</abbr></label>'.html_safe | |
= text_field_tag 'email' | |
.clearfix | |
.control-group.form_left | |
= '<label for="password">Password <abbr title="required">*</abbr></label>'.html_safe | |
= text_field_tag 'password' | |
.control-group.form_right | |
= '<label for="password_confirmation">Confirm Password <abbr title="required">*</abbr></label>'.html_safe | |
= text_field_tag 'password_confirmation' | |
.clearfix | |
.control-group.form_left | |
= '<label for="company">Company <abbr title="required">*</abbr></label>'.html_safe | |
= text_field_tag 'company' | |
.control-group.form_right | |
= '<label for="contact_number">Contact Number <abbr title="required">*</abbr></label>'.html_safe | |
= text_field_tag 'contact_number' | |
.clearfix | |
.control-group.form_left | |
= '<label for="number_employees">Number of employees <abbr title="required">*</abbr></label>'.html_safe | |
= text_field_tag 'number_employees' | |
.control-group.form_right | |
= label_tag('Access Code (if aplicable)'.html_safe).html_safe | |
= text_field_tag 'access_code' | |
.clearfix.submit_section | |
.clearfix | |
.submit_button | |
= link_to(image_tag('pages/try_it_for_free_create_btn.png'), '#', :class => 'link_button') | |
.submit_button_text | |
By clicking | |
%span.bolder Create Account, | |
you agree to the | |
= link_to("Terms of Service", terms_support_path) | |
and the | |
= link_to("Privacy Policy.", privacy_support_path) | |
.right_column.clearfix | |
.padding | |
.title | |
Enterprise Solution | |
.img | |
= image_tag('pages/try_it_for_free_img.png') | |
.description | |
For larger enterprises, we have a customizable solution designed especially for high-volume video screening. | |
A member of our sales team would be happy to demo the enterprise solution and walk you through the pricing | |
for enterprises. | |
.schedule_btn | |
= link_to(image_tag('pages/try_it_for_free_schedule.png'), '#', :class => 'link_button') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment