symlinked default

This commit is contained in:
2022-11-15 16:34:59 +01:00
parent 5ee0e85903
commit 1d783f0cc6
21 changed files with 934 additions and 16 deletions

View File

@@ -0,0 +1,12 @@
{% extends '@default/base.html.twig' %}
{% block title %}Reset your password{% endblock %}
{% block body %}
<h1>Reset your password</h1>
{{ form_start(resetForm) }}
{{ form_row(resetForm.plainPassword) }}
<button class="btn btn-primary">Update password</button>
{{ form_end(resetForm) }}
{% endblock %}