mirror of
https://github.com/simple-login/app.git
synced 2024-11-15 21:26:25 +08:00
12 lines
451 B
HTML
12 lines
451 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
{{ render_text("Hi " + name) }}
|
|
{{ 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 %}
|
|
|