10 lines
356 B
HTML
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 %}
|