mirror of
https://github.com/spiral-project/ihatemoney.git
synced 2025-05-05 04:31:49 +02:00

Send a mail containing a password reset token link instead of sending a clear text password. Ref #232
12 lines
278 B
HTML
12 lines
278 B
HTML
{% extends "layout.html" %}
|
|
|
|
{% block content %}
|
|
{% if error %}
|
|
<div class="alert alert-danger">{{ error }}</div>
|
|
{% else %}
|
|
<h2>{{ _("Reset your password") }}</h2>
|
|
<form class="form-horizontal" method="post">
|
|
{{ forms.reset_password(form) }}
|
|
</form>
|
|
{% endif %}
|
|
{% endblock %}
|