2017-09-02 10:26:17 +00:00
|
|
|
{% extends "datacenterlight/emails/base_email_datacenterlight.txt" %}
|
|
|
|
{% load i18n %}
|
2017-09-02 10:54:25 +00:00
|
|
|
{% block email_head %}{% trans 'Password Reset' %}{% endblock %}
|
2017-09-02 10:26:17 +00:00
|
|
|
{% block email_body %}
|
|
|
|
{% url 'hosting:reset_password_confirm' uidb64=uid token=token as password_reset_url %}
|
2017-09-02 10:54:25 +00:00
|
|
|
{% blocktrans %}You're receiving this email because you requested a password reset for your user account at {{site_name}}.
|
2017-09-02 10:26:17 +00:00
|
|
|
Please go to the following page and choose a new password: {{base_url}}{{ password_reset_url }}
|
|
|
|
If you didn't request a new password, ignore this e-mail.
|
|
|
|
Thank you!
|
|
|
|
{% endblocktrans %}
|
|
|
|
{% endblock %}
|