2021-10-28 13:24:34 +00:00
|
|
|
{% extends theme('base.html') %}
|
2023-03-28 18:37:16 +00:00
|
|
|
{% import 'macro/form.html' as fui %}
|
2020-10-22 15:37:01 +00:00
|
|
|
|
|
|
|
{% block content %}
|
2021-12-20 22:57:27 +00:00
|
|
|
<div class="loginform">
|
|
|
|
<h3 class="ui top attached header">
|
|
|
|
{% if logo_url %}
|
|
|
|
<img class="ui image" src="{{ logo_url }}">
|
|
|
|
{% endif %}
|
|
|
|
<div class="content">
|
|
|
|
{% trans %}Password reset{% endtrans %}
|
|
|
|
</div>
|
|
|
|
</h3>
|
2020-10-31 17:22:24 +00:00
|
|
|
|
2021-12-20 22:57:27 +00:00
|
|
|
<div class="ui attached clearing segment">
|
2023-06-27 15:41:00 +00:00
|
|
|
{{ fui.render_form(form, _("Password reset"), action=url_for("account.reset", identifier=identifier, hash=hash)) }}
|
2021-12-20 22:57:27 +00:00
|
|
|
</div>
|
2020-10-22 15:37:01 +00:00
|
|
|
</div>
|
|
|
|
{% endblock %}
|