app-MAIL-temp/templates/emails/change-email.html

11 lines
436 B
HTML
Raw Normal View History

2019-11-20 21:58:25 +01:00
{% extends "base.html" %}
2019-11-18 19:34:53 +01:00
2019-11-20 21:58:25 +01:00
{% 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.") }}
2019-11-20 21:58:25 +01:00
{{ render_button("Change email", link) }}
{% endblock %}
2019-11-18 19:34:53 +01:00