wip: initial commit
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
{% extends 'layout.html.twig' %}
|
||||
|
||||
{% block content %}
|
||||
<h2>
|
||||
Persönliche Daten
|
||||
</h2>
|
||||
{{ form_start(form) }}
|
||||
<fieldset class="grid">
|
||||
{{ form_row(form.gender) }}
|
||||
{{ form_row(form.firstName) }}
|
||||
{{ form_row(form.name) }}
|
||||
{{ form_row(form.dateOfBirth) }}
|
||||
</fieldset>
|
||||
<fieldset class="grid">
|
||||
{{ form_row(form.street) }}
|
||||
{{ form_row(form.postCode) }}
|
||||
{{ form_row(form.city) }}
|
||||
{{ form_row(form.country) }}
|
||||
</fieldset>
|
||||
<fieldset class="grid">
|
||||
{{ form_row(form.email) }}
|
||||
{{ form_row(form.phone) }}
|
||||
{{ form_row(form.mobile) }}
|
||||
</fieldset>
|
||||
{{ form_rest(form) }}
|
||||
<button type="submit">
|
||||
Speichern
|
||||
</button>
|
||||
{{ form_end(form) }}
|
||||
{% endblock %}
|
||||
Reference in New Issue
Block a user