feat: registration and password reset
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
{% extends 'layout.html.twig' %}
|
||||
|
||||
{% block content %}
|
||||
<div class="p-8 max-w-screen-sm border border-gray-300 rounded-md mx-auto">
|
||||
<h2 class="text-2xl font-semibold pb-4">
|
||||
Passwort zurücksetzen
|
||||
</h2>
|
||||
{{ form_start(form) }}
|
||||
<div class="pb-4">
|
||||
{{ form_row(form.email) }}
|
||||
</div>
|
||||
<button type="submit" class="btn">
|
||||
Absenden
|
||||
</button>
|
||||
<div class="pt-4">
|
||||
<a href="{{ path('app_login') }}" class="underline">
|
||||
zurück
|
||||
</a>
|
||||
</div>
|
||||
{{ form_rest(form) }}
|
||||
{{ form_end(form) }}
|
||||
</div>
|
||||
{% endblock %}
|
||||
Reference in New Issue
Block a user