NewsBlur/templates/mail/email_forgot_password.xhtml

17 lines
1.3 KiB
HTML
Raw Normal View History

{% extends "mail/email_base.xhtml" %}
{% load utils_tags %}
{% block body %}
2014-05-29 12:19:13 -07:00
<p style="font-size: 24px; color:#555555; margin-top: 18px;margin-bottom: 10px;padding-top:6px;">Forgot your password? No problem.</p>
<p style="line-height: 20px;">You can change your password by visiting this link:</p>
<p style="line-height: 20px;"><a href="http://{% current_domain %}{{ user.profile.autologin_url }}?next=/profile/forgot_password_return">http://{% current_domain %}{{ user.profile.autologin_url }}?next=/profile/forgot_password_return</a></p>
<p style="line-height: 20px;">You will be auto-logged into your account and presented with a form to change your password.</p>
<p style="line-height: 20px;">Hope everything on NewsBlur is working well for you. Let me know if you see any issues. I rely on folks like you who know how to email me to be my eyes and ears on the site.</p>
{% if not user.profile.is_premium %}
<p style="line-height: 20px;">And if you like using NewsBlur, consider going premium to help fund further development. I'm a solo developer, so it goes a long way.</p>
{% else %}
<p style="line-height: 20px;">And a huge thanks for going premium. I'm a solo developer, so it goes a long way.</p>
{% endif %}
{% endblock %}