fe21f9c6af
- Update django-allauth-cas to the last version. - Add docs (README, example/README). - Add tests for Clipper provider. - Add tests to check templates do not contain syntax error. - Add the last missing templates to override all allauth's displayable templates. - Improve stylesheets.
17 lines
396 B
HTML
17 lines
396 B
HTML
{% extends "allauth_ens/base.html" %}
|
|
{% load i18n %}
|
|
|
|
{% block title %}{% trans "Password Reset" %}{% endblock %}
|
|
{% block header-title %}{% trans "Password Reset" %}{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<section>
|
|
<p>
|
|
{% blocktrans %}
|
|
We have sent you an e-mail. Please contact us if you do not receive it within a few minutes.
|
|
{% endblocktrans %}
|
|
</p>
|
|
</section>
|
|
|
|
{% endblock %}
|