templates/frontend/inserat-formular/include/kleininserat.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. {{ form_row(form.date, {'attr':{'class':'jqBootstrapDatePicker', 'style':'width:160px'}}) }}
  4. <h5>{{ entity.selfSubTitle }}</h5>
  5. {{ form_row(form.vorname) }}
  6. {{ form_row(form.nachname) }}
  7. {{ form_row(form.strasse) }}
  8. {{ form_row(form.plz) }}
  9. {{ form_row(form.ort) }}
  10. {{ form_row(form.telefon) }}
  11. {{ form_row(form.email) }}
  12. <h5>Bezahlung & Datenschutz</h5>
  13. {{ form_row(form.bezahlung) }}
  14. {{ form_row(form.datenschutz) }}
  15. <br>
  16. <button type="submit" name="btnSubmit" class="btn btn-primary btn-sm" value="active-validation">Senden</button>
  17. &nbsp;&nbsp;&nbsp;
  18. <a href="{{ path('fe.page_einsendungen') }}" class="btn btn-link btn-sm">Abbrechen</a>
  19. {{ form_end(form) }}