codecombat/app/templates/core/contact.jade

36 lines
1.8 KiB
Text
Raw Normal View History

extends /templates/core/modal-base
2014-01-10 16:31:26 -05:00
2014-01-10 20:32:29 -05:00
block modal-header-content
2014-01-03 13:32:13 -05:00
h3(data-i18n="contact.contact_us") Contact CodeCombat...
2014-01-10 20:32:29 -05:00
block modal-body-content
2014-01-03 13:32:13 -05:00
p
span(data-i18n="contact.welcome") Good to hear from you! Use this form to send us email.
span.spl(data-i18n="contact.forum_prefix") For anything public, please try
2014-01-03 13:32:13 -05:00
a(href="http://discourse.codecombat.com/", data-i18n="contact.forum_page") our forum
span(data-i18n="contact.forum_suffix") instead.
if me.isPremium()
p(data-i18n="contact.subscriber_support") Since you're a CodeCombat subscriber, your email will get our priority support.
else
p
span(data-i18n="contact.subscribe_prefix") If you need help figuring out a level, please
a.spl.spr(data-toggle="coco-modal", data-target="core/SubscribeModal", data-i18n="contact.subscribe") buy a CodeCombat subscription
span(data-i18n="contact.subscribe_suffix") and we'll be happy to help you with your code.
2014-01-27 21:05:39 -05:00
.form
.form-group
label.control-label(for="contact-email", data-i18n="general.email") Email
2014-12-12 11:28:56 -05:00
input#contact-email.form-control(name="email", type="email", value="#{me.get('anonymous') ? '' : me.get('email')}", data-i18n="[placeholder]contact.where_reply", placeholder="Where should we reply?")
2014-01-27 21:05:39 -05:00
.form-group
label.control-label(for="contact-message", data-i18n="general.message") Message
textarea#contact-message.form-control(name="message", rows=8)
2014-01-03 13:32:13 -05:00
#contact-screenshot.secret
a(target='_blank', data-i18n="contact.screenshot_included") Screenshot included.
br
img.pull-left(width=100)
2014-01-10 20:32:29 -05:00
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
2014-01-03 13:32:13 -05:00
button.btn.btn-primary#contact-submit-button(data-i18n="contact.send") Send Feedback