improve change-email template

This commit is contained in:
Son NK 2020-02-12 12:51:31 +07:00
parent b56cbe7dd7
commit e841201944
1 changed files with 5 additions and 3 deletions

View File

@ -2,9 +2,11 @@
{% block content %}
{{ render_text("Hi " + name) }}
{{ render_text("You have asked to change your email to: <br><b>"+ new_email +"</b>.") }}
{{ render_text("Your current email is: <br>" + current_email + ".") }}
{{ render_text("To confirm, please click on the button below or use this link: <br> " + link + "<br> within 12 hours.") }}
{{ render_text("You want to change your email to <b>"+ new_email +"</b>.") }}
{{ render_text("Your current email is " + current_email + ".") }}
{{ render_text("To confirm, please click on the button below within 12 hours.") }}
{{ render_button("Change email", link) }}
{{ render_text('Thanks, <br />SimpleLogin Team.') }}
{{ raw_url(link) }}
{% endblock %}