mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-24 16:17:57 -05:00
61 lines
3 KiB
Text
61 lines
3 KiB
Text
extends /templates/modal/modal_base
|
|
|
|
block modal-header-content
|
|
if userIsAnonymous || !userIsAuthorized
|
|
h3(data-i18n="employer_signup.title") Sign Up to Hire CodeCombat Players
|
|
else
|
|
h3 CodeCombat Placement Agreement
|
|
|
|
block modal-body-content
|
|
if userIsAnonymous
|
|
if userIsAuthorized
|
|
| You appear to be authorized on CodeCombat with LinkedIn.
|
|
else if sentMoreInfoEmail
|
|
| Thanks! You should receive an email from George shortly.
|
|
else
|
|
.form#signup-form
|
|
.form-group
|
|
input#signup-email.form-control.input-large(name="email",type="email" placeholder="Email")
|
|
.form-group
|
|
input#signup-password.input-large.form-control(name="password", type="password" placeholder="Password")
|
|
.modal-footer.linkedin
|
|
button.btn.btn-primary(id="create-account-button") Create Account
|
|
br
|
|
br
|
|
| Already have a CodeCombat account?
|
|
a.login-link(data-toggle="coco-modal", data-target="modal/AuthModal") Log in to continue!
|
|
else if !userIsAuthorized
|
|
.modal-footer.linkedin
|
|
p Please sign into your LinkedIn account to verify your identity.
|
|
script(type="in/Login" id="linkedInAuthButton" data-onAuth="contractCallback")
|
|
|
|
else
|
|
| Please agree to our terms before accessing our candidates.
|
|
br
|
|
br
|
|
b Who we are:
|
|
| CodeCombat is a programming game that both teaches and vets programmers. If you accept this agreement, we will let you hire the most talented developers on our platform.
|
|
br
|
|
br
|
|
b Placement fee:
|
|
| If you hire any of our players, you agree to pay us 15% of the candidate's first year annualized starting base salary. The fee is due on the first day that the candidate is employed and is 100% refundable for up to 90 day if the candidate doesn't remain employed at the company for any reason.
|
|
br
|
|
br
|
|
b Interns are free:
|
|
| We will not bill you for interns and part time hires (remote or onsite) hired through this site, provided they do not become full time hires within 1 year of their start date. If they do become full time hires within 1 year of their start date, we will invoice you 15% of their first year's annualized starting base salary on their first day of full time employment. For these hires, the 90 day guarantee does not apply.
|
|
br
|
|
br
|
|
| By clicking Agree, you are agreeing to CodeCombat's Placement Agreement on behalf of your company. You also consent to CodeCombat storing basic LinkedIn profile data for verification purposes, including your name, email, public profile URL, and work history.
|
|
block modal-footer
|
|
if userIsAnonymous
|
|
if userIsAuthorized
|
|
.modal-footer.linkedin
|
|
a.login-link(data-toggle="coco-modal", data-target="modal/AuthModal") Please log in to continue.
|
|
else if !userIsAnonymous && !userIsAuthorized
|
|
.modal-footer.linkedin
|
|
else if userIsAuthorized && !userHasSignedContract
|
|
.modal-footer.linkedin
|
|
button.btn.btn-primary(id="contract-agreement-button") I agree
|
|
else
|
|
.modal-footer.linkedin
|
|
| Thanks! You've already agreed to the contract.
|