{% extends "assetcloud/emails/base.html" %} {% block subject %}Reset your {{ PROJECT_NAME }} password.{% endblock %} {% block html_content %} {% if user.social_auth.exists %}

You have previously logged in with the following social network accounts:

If you would like to create or reset your account password instead, you can {% else %}

We received a request to reset your password. If you initiated this request then {% endif %} reset your password now. Otherwise, please ignore this email.

{% endblock %} {% block plain_content %} {% if user.social_auth.exists %} You have previously logged in with the following social network accounts: {% for social_auth in user.social_auth.all %} {{ social_auth.provider|capfirst }} {% endfor %} To create a password, go to: {{ activation_url }} {% else %} We receieved a request to reset your password. If you initiated this request then to reset your password go to: {{ activation_url }} {% endif %} Otherwise, please ignore this email. {% endblock %}