return async (env, _out) => { form#feedback-form(method="post" action="feedback.html" role="form") { div.row { div.col-md-12 { div.form-group { label(for="feedback-form-message") {'Message *'} textarea.form-control#feedback-form-message(name="message" placeholder="Please tell us your thoughts" rows="4" required="required" data-error="Please, leave us a message.") {} div.help-block.with-errors {} } } } p {} // fix this later div.row { div.col-md-12 { p.text-muted { strong {'*'} 'These fields are required.' //'Contact form template by ' //a(href="https://bootstrapious.com/p/how-to-build-a-working-bootstrap-feedback-form" target="_blank") {'Bootstrapious'} //'.' } } } input.btn.btn-success.btn-send(style="display: none;" type="submit" value="Send message") {} } }