13 lines
355 B
Twig
13 lines
355 B
Twig
{% extends 'layout/auth.html.twig' %}
|
|
|
|
{% block title %}Reset your password{% endblock %}
|
|
|
|
{% block auth_body %}
|
|
{{ form_start(resetForm) }}
|
|
{{ form_row(resetForm.plainPassword) }}
|
|
<div class="d-grid mt-3">
|
|
<button class="btn btn-primary">Reset password</button>
|
|
</div>
|
|
{{ form_end(resetForm) }}
|
|
{% endblock %}
|