forked from Github-Mirrors/canaille
20 lines
638 B
HTML
20 lines
638 B
HTML
{% extends 'base.html' %}
|
|
{% import 'fomanticui.j2' as sui %}
|
|
|
|
{% block content %}
|
|
<div class="loginform">
|
|
<h3 class="ui top attached header">
|
|
{% trans %}Password reset{% endtrans %}
|
|
</h3>
|
|
{% with messages = get_flashed_messages(with_categories=true) %}
|
|
{% for category, message in messages %}
|
|
<div class="ui attached message {{ category }}">
|
|
{{ message }}
|
|
</div>
|
|
{% endfor %}
|
|
{% endwith %}
|
|
<div class="ui attached clearing segment">
|
|
{{ sui.render_form(form, _("Password reset"), action=url_for("canaille.account.reset", uid=uid, hash=hash)) }}
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|