feat: registration and password reset

This commit is contained in:
Björn Fromme
2024-12-03 16:08:06 +01:00
parent 8b796a8543
commit 3e59031ba9
10 changed files with 285 additions and 22 deletions
+9 -1
View File
@@ -11,7 +11,7 @@
</div>
{% endif %}
<h2 class="text-2xl font-semibold pb-4">
Login MyE&amp;P
Login
</h2>
<form action="{{ path('app_login') }}" method="post">
<div class="mb-6">
@@ -47,6 +47,14 @@
<button type="submit" class="btn w-full">
Login
</button>
<div class="flex items-center space-x-2 pt-4">
<a href="{{ path('app_reset_password') }}" class="underline">
Passwort vergessen?
</a>
<a href="{{ path('app_registration') }}" class="underline">
Registrierung
</a>
</div>
<input type="hidden" name="_csrf_token" value="{{ csrf_token('authenticate') }}">
</form>
</div>