mirror of
https://github.com/simple-login/app.git
synced 2024-11-15 21:26:25 +08:00
9 lines
330 B
HTML
9 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 %}
|
|
|