Files
web2.0-backend/templates/password_reset/reset_sent.html
T
2017-10-31 21:37:19 +02:00

10 lines
356 B
HTML

{% extends "password_reset/base.html" %}
{% load i18n %}
{% block content %}
<div class="container">
<div class="d-flex justify-content-center">
<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>
</div>
</div>{% endblock %}