Coverage for ivatar/ivataraccount/templates/password_change_done.html: 0%
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 changed successfully' %} - ivatar{% endblock title %}
6{% block content %}
8<h1>{% trans 'Password changed successfully' %}</h1>
10<p>{% trans 'Your password was changed.' %}</p>
12{% if not user.is_anonymous %}
13<p><a href="{% url 'profile' %}">{% trans 'Back to your profile' %}</a></p>
14{% else %}
15<p><a href="{% url 'login' %}">{% trans 'Back to the login page' %}</a></p>
16{% endif %}
18<div style="height:40px"></div>
20{% endblock content %}