diff options
| author | rubenwardy <rw@rubenwardy.com> | 2020-01-25 03:03:45 +0000 |
|---|---|---|
| committer | rubenwardy <rw@rubenwardy.com> | 2020-01-25 03:03:45 +0000 |
| commit | 19a626e2377997b23a176b4e65a33ea3e31ea467 (patch) | |
| tree | 36b818984ca8212797807dc4a1da3f74247abd9b /app/templates | |
| parent | 43c2ee6b7b55ea864568689946c5732d16b2f722 (diff) | |
| download | cheatdb-19a626e2377997b23a176b4e65a33ea3e31ea467.tar.xz | |
Fix auto-webhook creation failure due to wrong scheme
Diffstat (limited to 'app/templates')
| -rw-r--r-- | app/templates/emails/verify.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/templates/emails/verify.html b/app/templates/emails/verify.html index 04a4bc5..925521a 100644 --- a/app/templates/emails/verify.html +++ b/app/templates/emails/verify.html @@ -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 %} |
