templates/frontend/inserat-formular/include/anschlagbrett.html.twig line 1

Open in your IDE?
  1. {{ form_start(form, {'attr': {'id': 'form_vs_melden', 'class':'form-veranstaltung', 'autocomplete': 'off'}}) }}
  2. {{ form_row(form.text) }}
  3. {% include 'frontend/inserat-formular/include/fileupload.html.twig'%}
  4. {{ form_row(form.date, {'attr':{'class':'jqBootstrapDatePicker', 'style':'width:160px'}}) }}
  5. <h5>{{ entity.selfSubTitle }}</h5>
  6. {{ form_row(form.vorname) }}
  7. {{ form_row(form.nachname) }}
  8. {{ form_row(form.strasse) }}
  9. {{ form_row(form.plz) }}
  10. {{ form_row(form.ort) }}
  11. {{ form_row(form.telefon) }}
  12. {{ form_row(form.email) }}
  13. <h5>Bezahlung & Datenschutz</h5>
  14. {{ form_row(form.bezahlung) }}
  15. {{ form_row(form.datenschutz) }}
  16. <br>
  17. <button type="submit" name="btnSubmit" class="btn btn-primary btn-sm" value="active-validation">Senden</button>
  18. &nbsp;&nbsp;&nbsp;
  19. <a href="{{ path('fe.page_einsendungen') }}" class="btn btn-link btn-sm">Abbrechen</a>
  20. {{ form_end(form) }}