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

14 lines
447 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 %}
2020-02-12 12:38:18 +01:00
{{ render_text("You recently requested to change your email on SimpleLogin to <b>"+ new_email +"</b>.") }}
2020-02-12 06:51:31 +01:00
{{ render_text("Your current email is " + current_email + ".") }}
2020-02-12 12:38:18 +01:00
{{ render_text("Use the button below to confirm within the next 12 hours.") }}
2019-11-20 21:58:25 +01:00
{{ render_button("Change email", link) }}
{{ render_text('Thanks,
<br />
SimpleLogin Team.') }}
2020-02-12 06:51:31 +01:00
{{ raw_url(link) }}
2019-11-20 21:58:25 +01:00
{% endblock %}