WIP: Implement CRUD, improve menu configuration

This commit is contained in:
Björn Fromme
2023-09-27 17:50:42 +02:00
parent c55fd85314
commit c528156959
43 changed files with 2187 additions and 3475 deletions
+6 -1
View File
@@ -4,7 +4,7 @@
<div class="w-full h-screen flex flex-col items-center justify-center px-4">
<div class="w-full max-w-sm">
<h1 class="text-4xl font-bold text-gray-900 mb-6">
MyE&amp;P Teams
MyE&amp;P Team
</h1>
{% if error %}
<div class="flex items-center space-x-1 bg-red-500 text-white p-2 rounded-md mb-6">
@@ -32,6 +32,11 @@
</button>
<input type="hidden" name="_csrf_token" value="{{ csrf_token('authenticate') }}">
</form>
<div class="pt-4">
<a href="{{ path('app_security_password_reset') }}" class="text-sm underline">
Passwort vergessen?
</a>
</div>
</div>
</div>
+6 -1
View File
@@ -4,7 +4,7 @@
<div class="w-full h-screen flex flex-col items-center justify-center px-4">
<div class="w-full max-w-sm">
<h1 class="text-4xl font-bold text-gray-900 mb-6">
MyE&amp;P Teams
MyE&amp;P Team
</h1>
{{ form_start(form) }}
<div class="mb-6">
@@ -19,6 +19,11 @@
</button>
{{ form_rest(form) }}
{{ form_end(form) }}
<div class="pt-4">
<a href="{{ path('app_security_login') }}" class="text-sm underline">
zurück zum Login
</a>
</div>
</div>
</div>