diff options
Diffstat (limited to 'ihatemoney/templates/reset_password.html')
| -rw-r--r-- | ihatemoney/templates/reset_password.html | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/ihatemoney/templates/reset_password.html b/ihatemoney/templates/reset_password.html new file mode 100644 index 0000000..78b5853 --- /dev/null +++ b/ihatemoney/templates/reset_password.html @@ -0,0 +1,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 %} |
