2020-02-28 13:01:54 +01:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
|
|
|
{% block content %}
|
2022-06-29 11:28:26 +02:00
|
|
|
|
2020-02-28 13:01:54 +01:00
|
|
|
{{ render_text("Hi") }}
|
|
|
|
{{ render_text("Thank you for choosing SimpleLogin.") }}
|
|
|
|
{{ render_text("To get started, please activate your account by entering the following code into the application:") }}
|
2022-06-29 11:28:26 +02:00
|
|
|
{{ render_text("
|
2024-08-28 13:07:34 +02:00
|
|
|
<h1>" + code + "</h1>
|
|
|
|
") }}
|
2022-06-29 11:28:26 +02:00
|
|
|
{{ render_text('Thanks,
|
2024-08-28 13:07:34 +02:00
|
|
|
<br />
|
|
|
|
SimpleLogin Team.') }}
|
2020-02-28 13:01:54 +01:00
|
|
|
{% endblock %}
|