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

13 lines
451 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) }}
2020-02-12 06:51:31 +01:00
{{ 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.") }}
2019-11-20 21:58:25 +01:00
{{ render_button("Change email", link) }}
2020-02-12 06:51:31 +01:00
{{ render_text('Thanks, <br />SimpleLogin Team.') }}
{{ raw_url(link) }}
2019-11-20 21:58:25 +01:00
{% endblock %}
2019-11-18 19:34:53 +01:00