{% extends "base.html" %} {% load i18n %} {% block title %}{% spaceless %}{% trans "Send new password" %}{% endspaceless %}{% endblock %} {% block content %}

{% trans "Send new password" %}

{% trans "Lost your password? No problem - here you can reset it." %}
{% trans "Please enter your username below and new password will be sent to your registered e-mail" %}
{% if form.errors %}

{% "Sorry, looks like we have some errors:" %}
{% if form.username.errors %} {{ form.username.errors|join:", " }} {% endif %}

{% endif %} {% if msg %}
{{ msg }}
{% endif %}
{{ form.username }}

{% trans "return to login" %}

{% trans "Note: your new password will be activated only after you click the activation link in the email message" %}
{% endblock %}