use new style {% url "view" %} template syntax
[mygpo.git] / mygpo / web / templates / password_reset.html
blob63a6e32cbcca165e69e8c699fc88add472fb9a36
1 {% extends "base.html" %}
2 {% load url from future %}
3 {% load i18n %}
5 {% block title %}{% trans "Password reset" %}{% endblock %}
7 {% block header %}
8 <h1>{% trans "Your password has been reset" %}</h1>
9 {% endblock %}
11 {% block content %}
13 {% url "login" as login-url %}
14 <p>{% blocktrans %}You should have received an mail with your new password. Please <a href="{{ login-url }}">log in</a> now.{% endblocktrans %}</p>
16 {% endblock %}