mirror of
https://github.com/simple-login/app.git
synced 2024-11-10 21:27:10 +01:00
18 lines
343 B
Django/Jinja
18 lines
343 B
Django/Jinja
{% extends "base.txt.jinja2" %}
|
|
|
|
{% block content %}
|
|
Hi
|
|
|
|
You have added {{mailbox_email}} as an additional mailbox.
|
|
|
|
{% if link %}
|
|
To confirm, please click on this link:
|
|
|
|
{{link}}
|
|
{% else %}
|
|
Please enter {{ code }} as your verification code for this mailbox
|
|
{% endif %}
|
|
|
|
This link will only be valid during the next 15 minutes.
|
|
{% endblock %}
|