ihatemoney/ihatemoney/templates/reset_password.html
0livd b94bad829c Use token based auth to reset passwords (#269)
Send a mail containing a password reset
token link instead of sending a clear text
password.

Ref #232
2017-10-26 19:46:34 +02:00

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 %}