feat: email confirmation
This commit is contained in:
5
later42/templates/email_activation.html
Normal file
5
later42/templates/email_activation.html
Normal file
@ -0,0 +1,5 @@
|
||||
{% autoescape off %}
|
||||
Привет, {{ user.username }}.
|
||||
Ссылка для активации аккаунта:
|
||||
http://{{ domain }}{% url 'activate' uidb64=uid token=token %}
|
||||
{% endautoescape %}
|
6
later42/templates/email_sent.html
Normal file
6
later42/templates/email_sent.html
Normal file
@ -0,0 +1,6 @@
|
||||
{% extends 'base.html' %}
|
||||
|
||||
{% block content %}
|
||||
<h2>Активация аккаунта</h2>
|
||||
<p>Письмо со ссылкой отправлено по указанному адресу.</p>
|
||||
{% endblock %}
|
Reference in New Issue
Block a user