2023-07-04 19:22:21 +08:00
|
|
|
{% load i18n %}
|
|
|
|
{% block html_body %}
|
|
|
|
<p>{% blocktrans %}You're receiving this email because you need to finish activation process on {{ site_name }}.{% endblocktrans %}</p>
|
|
|
|
|
2023-07-23 22:36:19 +08:00
|
|
|
<p>{% trans "Please click on the button below to activate your account in-app:" %}</p>
|
|
|
|
<p>
|
|
|
|
<a href="https://lemeow125.github.io/simple-redirect/#/redirect/{{ domain }}/activation/{{uid}}/{{token}}" style="background-color: #007BFF; color: white; padding: 10px 20px; text-align: center; text-decoration: none; display: inline-block;">
|
|
|
|
Activate Account
|
|
|
|
</a>
|
|
|
|
</p>
|
2023-07-04 19:22:21 +08:00
|
|
|
|
2023-07-06 17:33:35 +08:00
|
|
|
<p>{% blocktrans %}Many thanks from the {{ site_name }} team{% endblocktrans %}</p>
|
2023-07-04 19:22:21 +08:00
|
|
|
|
2023-07-23 22:36:19 +08:00
|
|
|
{% endblock html_body %}
|