Feat: Implement password reset
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
{% extends 'base.html.twig' %}
|
||||
|
||||
{% block body %}
|
||||
<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&P Teams
|
||||
</h1>
|
||||
{{ form_start(form) }}
|
||||
<div class="mb-6">
|
||||
<label for="username" class="block text-sm font-semibold leading-6 text-gray-900">
|
||||
E-Mail:
|
||||
</label>
|
||||
{{ form_widget(form.email) }}
|
||||
{{ form_errors(form.email) }}
|
||||
</div>
|
||||
<button type="submit" class="inline-flex justify-center rounded-lg text-sm font-semibold py-2.5 px-4 bg-slate-900 text-white hover:bg-slate-700 w-full">
|
||||
Passwort zurückseten
|
||||
</button>
|
||||
{{ form_rest(form) }}
|
||||
{{ form_end(form) }}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{% endblock %}
|
||||
Reference in New Issue
Block a user