Coverage for ivatar/ivataraccount/templates/password_reset_submitted.html: 100%

13 statements  

« prev     ^ index     » next       coverage.py v7.5.1, created at 2024-05-18 23:09 +0000

1{% extends 'base.html' %} 

2{% load i18n %} 

3  

4{% block title %}{% trans 'Password reset requested' %} - ivatar{% endblock title %} 

5  

6{% block content %} 

7  

8<p>{% trans 'You have successfully requested a password reset for your account.' %}</p> 

9  

10<p>{% trans 'You will receive an email with the details on how to proceed.' %}</p> 

11  

12<h2>{% trans "Still haven't received the email?" %}</h2> 

13  

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> 

19  

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> 

22  

23<p><a href="{% url 'home' %}">{% trans 'Back to the homepage' %}</a>.</p> 

24  

25<div style="height:40px"></div> 

26  

27{% endblock content %}