templates/frontend/abo/adressmutation.html.twig line 1

Open in your IDE?
  1. {% extends 'frontend/base.html.twig' %}
  2. {% form_theme form 'bootstrap_4_horizontal_layout.html.twig' %}
  3. {% block pageTitle %}Adressänderung{% endblock %}
  4. {% block pageDescription %}{% endblock %}
  5. {% block contentArea %}
  6. <div class="row">
  7. <div class="col-lg-8 col-12 mb-lg-0 mb-5">
  8. <h1>Adressänderung</h1>
  9. {% if mailSendMessage %}
  10. <p>{{ mailSendMessage|nl2br }}</p>
  11. {% else %}
  12. {% if content.is_visible_on_frontend and content.content_html %}
  13. <p class="mb-4">
  14. {{ content.content_html|raw }}
  15. </p>
  16. {% endif %}
  17. {{ form_start(form, {'attr':{'class':'form-abo'}}) }}
  18. {{ form_row(form.datumAb, {'attr':{'style':'width:160px', 'class':'jqBootstrapDatePicker'}}) }}
  19. <h5>Bisherige Adresse</h5>
  20. {{ form_row(form.vorname) }}
  21. {{ form_row(form.nachname) }}
  22. {{ form_row(form.firma) }}
  23. {{ form_row(form.strasse) }}
  24. {{ form_row(form.plz) }}
  25. {{ form_row(form.ort) }}
  26. {{ form_row(form.land) }}
  27. {{ form_row(form.telefon) }}
  28. {{ form_row(form.email) }}
  29. <br>
  30. {{ form_row(form.mitteilung) }}
  31. <h5>Neue Adresse</h5>
  32. {{ form_row(form.altVorname) }}
  33. {{ form_row(form.altNachname) }}
  34. {{ form_row(form.altFirma) }}
  35. {{ form_row(form.altStrasse) }}
  36. {{ form_row(form.altPlz) }}
  37. {{ form_row(form.altOrt) }}
  38. {{ form_row(form.altLand) }}
  39. {{ form_row(form.altTelefon) }}
  40. {{ form_row(form.altEmail) }}
  41. <h5>Datenschutz</h5>
  42. {{ form_row(form.datenschutz) }}
  43. <br>
  44. <button type="submit" class="btn btn-primary btn-sm">Senden</button>
  45. &nbsp;&nbsp;&nbsp;
  46. <a href="{{ path('fe.abo') }}" class="btn btn-link btn-sm">Abbrechen</a>
  47. {{ form_end(form) }}
  48. {% endif %}
  49. </div>
  50. <div class="col-lg-4 col-12">
  51. {{ include('frontend/_partials/_right_col_full.html.twig') }}
  52. </div>
  53. </div>
  54. {% endblock %}