{% load i18n %}
{% load url from future %}
{% autoescape off %}

{% trans "Greetings" %} {{ user_name }},

{% blocktrans %}You're receiving this e-mail because you requested a password reset for your user account at {{ host_name }}.{% endblocktrans %}

{% trans "Please go to the following page and choose a new password:" %}

http{% if use_https %}s{% endif %}://{{ host_name }}{% url 'django.contrib.auth.views.password_reset_confirm' uidb36=uid token=token %}

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

{% trans "Thank you and see you in space :-)" %}

{{ corp_name }}

{% endautoescape %}
