Coverage for ivatar/ivataraccount/templates/password_reset.html: 100%
23 statements
« prev ^ index » next coverage.py v7.11.0, created at 2025-10-18 23:06 +0000
« prev ^ index » next coverage.py v7.11.0, created at 2025-10-18 23:06 +0000
1{% extends 'base.html' %}
2{% load i18n %}
4{% block title %}{% trans 'Reset your ivatar password' %}{% endblock title %}
6{% block content %}
8<h1>{% trans 'Reset password' %}</h1>
10<p>{% trans 'To continue with the password reset, enter one of the email addresses associated with your account.' %}</p>
11<div class="form-container">
12<form action="" method="post" name="reset">{% csrf_token %}
14<div class="form-group">
15<label for="id_email" class="form-label">{% trans 'Email' %}</label>
16<input type="email" name="email" autofocus required class="form-control" id="id_email" placeholder="{% trans 'Enter your email address' %}">
17</div>
19<div class="button-group">
20 <button type="submit" class="btn btn-primary">{% trans 'Reset my password' %}</button>
21 <a href="{% url 'profile' %}" class="btn btn-secondary">{% trans 'Cancel' %}</a>
22</div>
24</form>
25</div>
26<div style="height:40px"></div>
28{% endblock content %}