Fix auto-webhook creation failure due to wrong scheme

This commit is contained in:
rubenwardy
2020-01-25 03:03:45 +00:00
parent 43c2ee6b7b
commit 19a626e237
4 changed files with 13 additions and 6 deletions

View File

@@ -16,12 +16,12 @@
If this was you, then please click this link to verify the address:
</p>
<a class="btn" href="{{ url_for('users.verify_email', token=token, _external=True) }}">
<a class="btn" href="{{ abs_url_for('users.verify_email', token=token) }}">
Confirm Email Address
</a>
<p style="font-size: 80%;">
Or paste this into your browser: {{ url_for('users.verify_email', token=token, _external=True) }}
Or paste this into your browser: {{ abs_url_for('users.verify_email', token=token) }}
<p>
{% endblock %}