06/15 Phase 1 + 2 codes

This commit is contained in:
2026-06-15 11:23:05 -04:00
commit c2064b84b4
62 changed files with 2937 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
{% 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 %}