simple-login/templates/emails/transactional/change-email.html

12 lines
442 B
HTML
Raw Normal View History

2019-11-20 20:58:25 +00:00
{% extends "base.html" %}
2019-11-18 18:34:53 +00:00
2019-11-20 20:58:25 +00:00
{% block content %}
2020-02-12 11:38:18 +00:00
{{ render_text("You recently requested to change your email on SimpleLogin to <b>"+ new_email +"</b>.") }}
2020-02-12 05:51:31 +00:00
{{ render_text("Your current email is " + current_email + ".") }}
2020-02-12 11:38:18 +00:00
{{ render_text("Use the button below to confirm within the next 12 hours.") }}
2019-11-20 20:58:25 +00:00
{{ render_button("Change email", link) }}
2020-02-12 05:51:31 +00:00
{{ render_text('Thanks, <br />SimpleLogin Team.') }}
{{ raw_url(link) }}
2019-11-20 20:58:25 +00:00
{% endblock %}
2019-11-18 18:34:53 +00:00