templates/forms/form.html.twig line 1

Open in your IDE?
  1. {% extends "base.html.twig" %}
  2. {% block content %}
  3. <main id="main" class="main-shifted-right-form">
  4. <section id="about" class="about">
  5. <div class="container" id="formContainer">
  6. {% if content.form %}
  7. {% if app.request.get('send') != 'true' %}
  8. {% form_theme content.form 'forms/theme.html.twig' %}
  9. {{ form(content.form) }}
  10. {% else %}
  11. <div class="section-title" style="width: 80%">
  12. <h1 style="font-family: Teko, sans-serif; font-size: 50px; letter-spacing: 1.3px; line-height: 1">Ihre Nachricht wurde erfolgreich versandt. Sie erhalten eine Bestätigung via Mail.</h1>
  13. </div>
  14. {% endif %}
  15. {% endif %}
  16. </div>
  17. </section>
  18. </main>
  19. {% endblock %}