templates/Includes/contact_forms.html.twig line 1

Open in your IDE?
  1. {% if editmode %}
  2.     <link rel="stylesheet" href="/assets/css/main.css">
  3. {% endif %}
  4. {% set unique_id = random() %}
  5. <dialog class="page-popup contact-form shadow-lg {% if editmode %}d-flex position-static{% endif %}" id="modal-iframe-zoho">
  6.     <form method="dialog" class="row mb-3">
  7.         <div class="col-6">
  8.             <h2>Ihre Anfrage</h2>
  9.         </div>
  10.         <div class="col-6 text-end">
  11.             <button class="btn btn-round btn-primary"{% if editmode %}disabled{% endif %}>&times;</button>
  12.         </div>
  13.     </form>
  14.     {% set config = {
  15.         'form_id': 1,
  16.         'form_template': 'bootstrap_4_layout.html.twig',
  17.         'output_workflow': 'ContactInquiry'
  18.     } %}
  19.     {{ form_builder_static(config) }}
  20.     <span class="mandatory-description">* Diese Angabe ist verpflichtend</span>
  21. </dialog>