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

22 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 'Reset your ivatar password' %}{% endblock title %} 

5  

6{% block content %} 

7  

8<h1>{% trans 'Reset password' %}</h1> 

9  

10<p>{% trans 'To continue with the password reset, enter one of the email addresses associated with your account.' %}</p> 

11<div style="max-width:640px"> 

12<form action="" method="post" name="reset">{% csrf_token %} 

13  

14{{ form.email.errors }} 

15<div class="form-group"> 

16<label for="id_email">{% trans 'Email' %}:</label> 

17<input type="text" name="email" autofocus required class="form-control" id="id_email"> 

18</div> 

19  

20<button type="submit" class="button">{% trans 'Reset my password' %}</button>&nbsp; 

21<button type="cancel" class="button" href="{% url 'profile' %}">{% trans 'Cancel' %}</button> 

22  

23</form> 

24</div> 

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

26  

27{% endblock content %}