canaille-globuzma/canaille/templates/reset-password.html

20 lines
610 B
HTML
Raw Normal View History

{% 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-28 15:56:49 +00:00
{{ fui.render_form(form, _("Password reset"), action=url_for("account.reset", user=user, hash=hash)) }}
2021-12-20 22:57:27 +00:00
</div>
2020-10-22 15:37:01 +00:00
</div>
{% endblock %}