14 lines
604 B
HTML
14 lines
604 B
HTML
{% extends "datacenterlight/emails/base_email_datacenterlight.html" %}
|
|
{% load i18n %}
|
|
{% block email_head %}
|
|
{% trans 'Password Reset' %}
|
|
{% endblock %}
|
|
{% block email_body %}
|
|
{% url 'hosting:reset_password_confirm' uidb64=uid token=token as password_reset_url %}
|
|
{% blocktrans %}
|
|
You're receiving this email because you requested a password reset for your user account at {{site_name}}.<br/>
|
|
Please go to the following page and choose a new password: {{base_url}}{{ password_reset_url }}<br/>
|
|
If you didn't request a new password, ignore this e-mail.<br/>
|
|
Thank you!
|
|
{% endblocktrans %}
|
|
{% endblock %}
|