mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-05 16:58:59 +00:00
18 lines
1.2 KiB
HTML
18 lines
1.2 KiB
HTML
{% extends "mail/email_base.xhtml" %}
|
|
|
|
{% load utils_tags %}
|
|
|
|
{% block body %}
|
|
<h2 style="color: #282F33; font-size: 18px; font-weight: bold;">
|
|
Forgot your password? No problem.
|
|
</h2>
|
|
<p style="line-height: 20px;">You can change your password by visiting this link:</p>
|
|
<p style="line-height: 20px;"><a href="https://{% current_domain %}{{ user.profile.autologin_url }}?next=/profile/forgot_password_return">https://{% 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 %}
|