Coverage for ivatar/ivataraccount/templates/password_reset_submitted.html: 100%
13 statements
« prev ^ index » next coverage.py v7.6.9, created at 2024-12-26 00:11 +0000
« prev ^ index » next coverage.py v7.6.9, created at 2024-12-26 00:11 +0000
1{% extends 'base.html' %}
2{% load i18n %}
4{% block title %}{% trans 'Password reset requested' %} - ivatar{% endblock title %}
6{% block content %}
8<p>{% trans 'You have successfully requested a password reset for your account.' %}</p>
10<p>{% trans 'You will receive an email with the details on how to proceed.' %}</p>
12<h2>{% trans "Still haven't received the email?" %}</h2>
14<ul>
15 <li>{% trans 'Did you look in your spam folder?' %}</li>
16 <li>{% blocktrans %}Did you use an email address which is in the ivatar system?{% endblocktrans %}</li>
17 <li>{% trans 'Has this email address ever been confirmed within the system?' %}</li>
18</ul>
20{% url 'new_account' as new_account_url %}
21<p>{% blocktrans %}If everything else fails, you can always <a href="{{ new_account_url }}">create a new account</a> or <a href="mailto:support@libravatar.org">email us</a>.{% endblocktrans %}</p>
23<p><a href="{% url 'home' %}">{% trans 'Back to the homepage' %}</a>.</p>
25<div style="height:40px"></div>
27{% endblock content %}