WIP: Implement profile editing

This commit is contained in:
Björn Fromme
2023-09-17 19:36:18 +02:00
parent 97c5a686af
commit bfc5e5e242
17 changed files with 498 additions and 18 deletions
+25
View File
@@ -0,0 +1,25 @@
{% extends 'base.html.twig' %}
{% block body %}
{{ form_start(form) }}
<div class="container">
<div class="grid grid-cols-2 gap-8">
<div class="flex flex-col space-y-4">
{{ form_row(form.academicTitle) }}
{{ form_row(form.firstName) }}
{{ form_row(form.lastName) }}
{{ form_row(form.gender) }}
{{ form_row(form.dateOfBirth) }}
{{ form_row(form.nationality) }}
</div>
<div></div>
<div>
<button type="submit" class="btn">
Aktualisieren
</button>
</div>
</div>
</div>
{{ form_rest(form) }}
{{ form_end(form) }}
{% endblock %}