Improve activation email

This commit is contained in:
Son NK 2020-02-12 12:44:32 +07:00
parent 7f909f5a96
commit 4e46905967
1 changed files with 3 additions and 1 deletions

View File

@ -3,7 +3,9 @@
{% block content %}
{{ render_text("Hi " + name) }}
{{ render_text("Thank you for choosing SimpleLogin.") }}
{{ render_text("To get started, please confirm that <b>" + email + "</b> is your email address by clicking on the button below or use this link " + activation_link + " within 1 hour.") }}
{{ render_text("To get started, please confirm that <b>" + email + "</b> is your email address by clicking on the button below within 1 hour.") }}
{{ render_button("Verify email", activation_link) }}
{{ render_text('Thanks, <br />SimpleLogin Team.') }}
{{ raw_url(activation_link) }}
{% endblock %}