NewsBlur/templates/mail/email_forgot_password.xhtml

15 lines
1.2 KiB
HTML
Raw Normal View History

{% extends "mail/email_base.xhtml" %}
{% block body %}
<p style="font-size: 37px; 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://www.newsblur.com{{ user.profile.autologin_url }}?next=password">http://www.newsblur.com{{ user.profile.autologin_url }}?next=password</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 %}