mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-26 09:08:05 -05:00
22 lines
1.4 KiB
Text
22 lines
1.4 KiB
Text
extends /templates/modal/contact
|
|
|
|
block modal-header-content
|
|
h3(data-i18n="contact.contact_candidate") Contact Candidate
|
|
|
|
block modal-body-content
|
|
p(data-i18n="contact.recruitment_reminder") Use this form to get in touch with candidates you are interested in interviewing. Remember that CodeCombat charges 18% of first-year salary for any full-time candidate you hire who stays 90 days, but that part-timers, remote employees, contractors, and interns are free.
|
|
.form
|
|
.form-group
|
|
label.control-label(for="contact-email", data-i18n="general.email") Email
|
|
input#contact-email.form-control(name="email", type="email", value=me.get('email'), placeholder="Where should the candidate reply?")
|
|
.form-group
|
|
label.control-label(for="contact-subject", data-i18n="general.subject") Subject
|
|
input#contact-subject.form-control(name="subject", type="text", value="Job interest", placeholder="Subject of the email the candidate will receive.")
|
|
.form-group
|
|
label.control-label(for="contact-message", data-i18n="general.message") Message
|
|
textarea#contact-message.form-control(name="message", rows=8)
|
|
|
|
block modal-footer-content
|
|
span.sending-indicator.pull-left.secret(data-i18n="common.sending") Sending...
|
|
a(href='#', data-dismiss="modal", aria-hidden="true", data-i18n="common.cancel").btn Cancel
|
|
button.btn.btn-primary#contact-submit-button(data-i18n="common.send") Send
|