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

15 lines
404 B
HTML

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