mirror of
https://github.com/lemeow125/StudE-Backend.git
synced 2024-11-17 06:19:24 +08:00
14 lines
659 B
HTML
14 lines
659 B
HTML
{% load i18n %}
|
|
{% block html_body %}
|
|
<p>{% blocktrans %}You're receiving this email because you need to finish activation process on {{ site_name }}.{% endblocktrans %}</p>
|
|
|
|
<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>
|
|
|
|
<p>{% blocktrans %}Many thanks from the {{ site_name }} team{% endblocktrans %}</p>
|
|
|
|
{% endblock html_body %}
|