2019-11-20 21:51:12 +01:00
|
|
|
{% extends "base.html" %}
|
2019-11-16 15:01:43 +01:00
|
|
|
|
2019-11-20 21:51:12 +01:00
|
|
|
{% block content %}
|
|
|
|
{{ render_text("Thank you for choosing SimpleLogin.") }}
|
2020-02-12 06:44:32 +01:00
|
|
|
{{ render_text("To get started, please confirm that <b>" + email + "</b> is your email address by clicking on the button below within 1 hour.") }}
|
2020-02-06 05:37:10 +01:00
|
|
|
{{ render_button("Verify email", activation_link) }}
|
2020-02-12 06:44:32 +01:00
|
|
|
{{ render_text('Thanks, <br />SimpleLogin Team.') }}
|
|
|
|
{{ raw_url(activation_link) }}
|
2019-11-20 21:51:12 +01:00
|
|
|
{% endblock %}
|
2019-11-16 15:01:43 +01:00
|
|
|
|