pflaenz.li/pflaenzli/pflaenzli/templates/reset_password/reset.html.twig

12 lines
250 B
Twig
Raw Normal View History

2023-02-19 21:37:53 +01:00
{% extends 'base.html.twig' %}
{% block title %}Reset your password{% endblock %}
{% block content %}
<h1>Reset your password</h1>
{{ form_start(resetForm) }}
{{form_widget(resetForm)}}
{{ form_end(resetForm) }}
{% endblock %}