codecombat/app/templates/modal/contact.jade

28 lines
1.4 KiB
Text
Raw Normal View History

2014-01-10 20:32:29 -05:00
extends /templates/modal/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(data-i18n="contact.contribute_prefix") If you're interested in contributing, check out our
a(href="/contribute", data-dismiss="modal", data-i18n="contact.contribute_page") contribute page
span(data-i18n="contact.contribute_suffix") !
p
span(data-i18n="contact.forum_prefix") For anything public, please try
a(href="http://discourse.codecombat.com/", data-i18n="contact.forum_page") our forum
span(data-i18n="contact.forum_suffix") instead.
2014-01-27 21:05:39 -05:00
.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('anonymous') ? '' : me.get('email')}", 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
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