{% if editmode %}
<link rel="stylesheet" href="/assets/css/main.css">
{% endif %}
{% set unique_id = random() %}
<dialog class="page-popup contact-form shadow-lg {% if editmode %}d-flex position-static{% endif %}" id="modal-iframe-zoho">
<form method="dialog" class="row mb-3">
<div class="col-6">
<h2>Ihre Anfrage</h2>
</div>
<div class="col-6 text-end">
<button class="btn btn-round btn-primary"{% if editmode %}disabled{% endif %}>×</button>
</div>
</form>
{% set config = {
'form_id': 1,
'form_template': 'bootstrap_4_layout.html.twig',
'output_workflow': 'ContactInquiry'
} %}
{{ form_builder_static(config) }}
<span class="mandatory-description">* Diese Angabe ist verpflichtend</span>
</dialog>