mirror of
https://github.com/simple-login/app.git
synced 2024-11-16 05:34:45 +08:00
10 lines
330 B
HTML
10 lines
330 B
HTML
|
{% extends "base.html" %}
|
||
|
|
||
|
{% block content %}
|
||
|
{{ render_text("Hi " + user.name) }}
|
||
|
{{ render_text("You have added "+ mailbox_email +" as an additional mailbox.") }}
|
||
|
{{ render_text("To confirm, please click on the button below or use this link: <br> " + link) }}
|
||
|
{{ render_button("Confirm email", link) }}
|
||
|
{% endblock %}
|
||
|
|