Files
2026-06-15 11:23:05 -04:00

14 lines
367 B
HTML

{% extends "base.html" %}
{% from "auth/_macros.html" import field %}
{% block title %}{{ _('Reset password') }}{% endblock %}
{% block content %}
<div class="card narrow">
<h2>{{ _('Reset password') }}</h2>
<form method="post" novalidate>
{{ form.hidden_tag() }}
{{ field(form.email) }}
{{ form.submit(class="btn") }}
</form>
</div>
{% endblock %}