{% extends 'account/base.html' %}
{% load i18n %}
{% block content %}
{% if user.is_authenticated %}
{% trans "Password has been changed." %}
{% else %}
{% blocktrans %}Password has been changed. You can now log on site.{% endblocktrans %}
{% endif %}
{% endblock %}