templates/Blocks/ContactForm/Frontend/renderFrontend.html.twig line 11

Open in your IDE?
  1. <div class="block block-contactform {{ data.classes|default('') }}">
  2.     {% if app.request.query.get('sent') %}
  3.         <div class="bg-light rounded p-4" style="margin-bottom: 80px; border-left: 4px solid #b79961;">
  4.             <p class="m-0">
  5.                 Thank you for your submission!<br/>
  6.                 We will be in touch with you shortly.
  7.             </p>
  8.         </div>
  9.     {% endif %}
  10.     {{ form_errors(contactForm) }}
  11.     {{ form_start(contactForm) }}
  12.         {{ form_row(contactForm.name) }}
  13.         {{ form_row(contactForm.email) }}
  14.         {{ form_row(contactForm.phone) }}
  15.         {{ form_row(contactForm.message) }}
  16.         <button type="submit" class="btn btn-primary">Submit</button>
  17.     {{ form_end(contactForm) }}
  18. </div>