{% extends "misago/emails/base.txt" %}
{% load i18n misago_absoluteurl %}


{% block content %}
{% blocktrans trimmed with user=user %}
{{ user }}, you are receiving this message because you want to change forgotten password for your forum account.
{% endblocktrans %}

{% blocktrans trimmed %}
To change your account password click the link below:
{% endblocktrans %}
{% absoluteurl 'misago:forgotten-password-change-form' pk=user.pk token=confirmation_token %}
{% endblock content %}
