git-svn-id: http://78.47.251.156/svn/dev/sterntours-3@3394 f459cee4-fb09-11de-96c3-f9c5f16c3c76
This commit is contained in:
adametz 2018-05-22 15:35:56 +00:00
parent a3cf3a921d
commit cc0c353e1a
17 changed files with 658 additions and 489 deletions

View file

@ -34,7 +34,7 @@
<div id="booking_form" class="booking_form">
<form class="st-booking-form" method="post">
<form class="st-booking-form" method="post" data-toggle="validator">
{{ form_errors(form) }}
@ -113,23 +113,48 @@
</div>
<div class="col-md-6 col-sm-6 col-xs-12">
<div class="form-group">
<div class="required">
{{ form_field_pho(form.firstName, 'Vorname') }}
</div>
<div class="help-block with-errors"></div>
</div>
</div>
<div class="col-md-6 col-sm-6 col-xs-12">
<div class="form-group">
<div class="required">
{{ form_field_pho(form.lastName, 'Nachname') }}
</div>
<div class="help-block with-errors"></div>
</div>
</div>
<div class="col-md-12 col-sm-12 col-xs-12">
<div class="form-group">
<div class="required">
{{ form_field_pho(form.streetAddress, 'Straße, Hausnummer') }}
</div>
<div class="help-block with-errors"></div>
</div>
</div>
<div class="col-md-6 col-sm-6 col-xs-12">
<div class="form-group">
<div class="required">
{{ form_field_pho(form.zipCode, 'PLZ') }}
</div>
<div class="help-block with-errors"></div>
</div>
</div>
<div class="col-md-6 col-sm-6 col-xs-12">
<div class="form-group">
<div class="required">
{{ form_field_pho(form.city, 'Ort') }}
</div>
<div class="help-block with-errors"></div>
</div>
</div>
<div class="form-group col-md-12 col-sm-12 col-xs-12">
@ -137,7 +162,12 @@
</div>
<div class="col-md-6 col-sm-6 col-xs-12">
<div class="form-group">
<div class="required">
{{ form_field_pho(form.phone, 'Telefon tagsüber') }}
</div>
<div class="help-block with-errors"></div>
</div>
</div>
<div class="col-md-6 col-sm-6 col-xs-12">
@ -145,7 +175,12 @@
</div>
<div class="col-md-12 col-sm-12 col-xs-12">
<div class="form-group">
<div class="required">
{{ form_field_pho(form.email, 'E-Mail-Adresse') }}
</div>
<div class="help-block with-errors"></div>
</div>
</div>
</div>
@ -170,16 +205,33 @@
<div class="">
<div class="col-md-12 col-sm-12 col-xs-12">
<h5>Allgemeine Geschäftsbedingungen</h5>
<div class="form-group">
<div class="checkbox">
{{ form_widget(form.acceptTerms) }}
<label for="{{ form.acceptTerms.vars.id }}">
Ich habe alle Daten und Angaben auf Richtigkeit überprüft. Ich habe die
<a href="/uploads/{{ terms_filename }}" target="_blank">
Allgemeinen Geschäftsbedingungen des Reisevermittlers
</a>
gelesen und akzeptiert. Zugleich erkenne ich diese für alle Reiseteilnehmer an.
</label>
{{ form_errors(form.acceptTerms) }}
</div>
<div class="help-block with-errors"></div>
</div>
<div class="form-group">
<div class="checkbox">
{{ form_widget(form.acceptTerms) }}
<label for="{{ form.acceptTerms.vars.id }}">
Ich habe alle Daten und Angaben auf Richtigkeit überprüft. Ich habe die
<a href="/uploads/{{ terms_filename }}" target="_blank">
Allgemeinen Geschäftsbedingungen des Reisevermittlers
</a>
gelesen und akzeptiert. Zugleich erkenne ich diese für alle Reiseteilnehmer an.
{{ form_widget(form.acceptPrivacy) }}
<label for="{{ form.acceptPrivacy.vars.id }}">
Hiermit willige ich in die im Rahmen der
<a href="/datenschutz" target="_blank">
Datenschutzerklärung
</a> genannte Datenverarbeitung ein.
</label>
{{ form_errors(form.acceptTerms) }}
{{ form_errors(form.acceptPrivacy) }}
<div class="help-block with-errors"></div>
</div>
</div>
</div>
<div class="col-md-12 col-sm-12 col-xs-12">