Fix email forms to have externally available links

This commit is contained in:
Eskil Heyn Olsen
2013-01-12 19:34:53 -08:00
parent ded62a556b
commit 4f9e23e0bc
2 changed files with 2 additions and 2 deletions
@@ -1,4 +1,4 @@
<p>Your password has been changed.</p>
{% if security.recoverable %}
<p>If you did not change your password, <a href="{{ url_for_security('forgot_password') }}">click here to reset your password</a>.</p>
<p>If you did not change your password, <a href="{{ url_for_security('forgot_password', _external=True) }}">click here to reset your password</a>.</p>
{% endif %}
@@ -1,5 +1,5 @@
Your password has been changed
{% if security.recoverable %}
If you did not change your password, click the link below to reset your password:
{{ url_for_security('forgot_password') }}
{{ url_for_security('forgot_password', _external=True) }}
{% endif %}