templates/default/contact.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% block title %}About Us{% endblock %}
  3. {% block body %}
  4.     <section class="background-secondary text-white p-t-40 p-b-40">
  5.         <div class="container">
  6.             <div class="row">
  7.                 <div class="col-lg-12">
  8.                     <h1>Contact Us</h1>
  9.                 </div>
  10.             </div>
  11.         </div>
  12.     </section>
  13.     <!-- Services -->
  14.     <section class="p-b-20">
  15.         <div class="container">
  16.             <div class="row">
  17.                 <div class="col-lg-8 p-35 background-grey">
  18.                     <div class="heading-text heading-section">
  19.                         <h2>CONTACT US</h2>
  20.                         <span class="lead">We are always happy to discuss any needs you have for an API. There's been many requests throughout the years where we've sat down and custom built an API to serve your needs.</span>
  21.                     </div>
  22.                     {{ form_start(contactForm) }}
  23.                     {{ form_row(contactForm.name) }}
  24.                     {{ form_row(contactForm.email) }}
  25.                     {{ form_row(contactForm.subject) }}
  26.                     {{ form_row(contactForm.message) }}
  27.                     {{ form_row(contactForm.captcha) }}
  28.                     <button class="btn btn-secondary" type="submit" id="form-submit"><i class="fa fa-paper-plane"></i>&nbsp;Send
  29.                         message
  30.                     </button>
  31.                     {{ form_end(contactForm) }}
  32.                 </div>
  33.             </div>
  34.         </div>
  35.     </section>
  36.     <!-- end: Services -->
  37. {% endblock %}