36 lines
1.4 KiB
Twig
36 lines
1.4 KiB
Twig
{% extends 'base.html.twig' %}
|
|
|
|
{% block title %}Start{% endblock %}
|
|
|
|
{% block body %}
|
|
{{ form_start(form) }}
|
|
<h1 class="headlineFont">Auswahl des Schuljahres</h1>
|
|
<div class="form-check RadioBtnSchool">
|
|
{% for year in form.schuljahr %}
|
|
{{ form_widget(year, {'attr': {'class': 'form-check-input'}}) }}
|
|
<label class="form-check-label RadioBtnSchool" for="{{ year.vars.id }}">{{ year.vars.label }}</label><br>
|
|
{% endfor %}
|
|
</div>
|
|
<br>
|
|
|
|
<h1 class="headlineFont">Auswahl der Ausbildungsart</h1>
|
|
<div class="container">
|
|
<label class="FontFirst{{ form.typ.vars.required ? ' required' }}">Ausbildungsart</label>
|
|
<div class="form-error">
|
|
{{ form_errors(form.typ) }}
|
|
</div>
|
|
{{ form_widget(form.typ, {'attr':{'class':'form-control'}}) }}
|
|
<br>
|
|
|
|
<div class="form-error">
|
|
{{ form_errors(form.datenschutz) }}
|
|
</div>
|
|
<span class="datenschutz{{ form.datenschutz.vars.required ? ' required' }}">Ich akzeptiere die <a href="https://www.bs-pegnitz.de/blog/datenschutz" target="_blank">Datenschutzbestimmungen</a>:</span>
|
|
{{ form_widget(form.datenschutz, {'attr':{'class':'fixSize'}}) }}
|
|
<br>
|
|
<br>
|
|
<button type="submit" class="btn btn-outline-primary controlButton btn-block buttonFont">Weiter</button>
|
|
</div>
|
|
{{ form_end(form) }}
|
|
{% endblock %}
|