{% load i18n %}

{% autoescape off %}
	{% trans 'Welcome' %} {{ user.full_user_name }},

	{% blocktrans trimmed with BRANDING=BRANDING|title %}
	You are receiving this e-mail, because you have requested a password reset for your {{ BRANDING }} account.
	{% endblocktrans %}
	{% trans 'Please use the following link to set a new password:' %}

	{{ protocol }}://{{ domain }}{% url 'public:password_reset_confirm' uidb64=uid token=token %}

	{% trans 'If clicking on the link above does not work, please copy the URL and paste it into the address bar of your browser.' %}

	{% trans "Your username, in case you've forgotten:" %} {{ user.get_username }}

	{% trans 'Best regards' %},
	{% blocktrans trimmed with BRANDING=BRANDING|title %}
	Your {{ BRANDING }} team of {{ COMPANY }}
	{% endblocktrans %}
{% endautoescape %}
