b779ecaf14
All templates overridden for easier custom texts. Login_base.html for recovery and login pages
8 lines
340 B
HTML
8 lines
340 B
HTML
{% extends "password_reset/base.html" %}
|
|
{% load i18n %}
|
|
|
|
{% block title %}{% trans "Password recovery sent" %}{% endblock %}
|
|
|
|
{% block content %}
|
|
<p>{% blocktrans with ago=timestamp|timesince %}An email was sent to <strong>{{ email }}</strong> {{ ago }} ago. Use the link in it to set a new password.{% endblocktrans %}</p>
|
|
{% endblock %} |