aboutsummaryrefslogtreecommitdiff
path: root/ihatemoney/templates/reset_password.html
blob: 78b58530cdd88b2931aa22bd3e18a439c251150c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{% 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 %}