feat: email confirmation

This commit is contained in:
2022-10-25 16:44:24 +03:00
parent af1cdc2e10
commit a841980274
8 changed files with 85 additions and 6 deletions

View File

@ -0,0 +1,5 @@
{% autoescape off %}
Привет, {{ user.username }}.
Ссылка для активации аккаунта:
http://{{ domain }}{% url 'activate' uidb64=uid token=token %}
{% endautoescape %}

View File

@ -0,0 +1,6 @@
{% extends 'base.html' %}
{% block content %}
<h2>Активация аккаунта</h2>
<p>Письмо со ссылкой отправлено по указанному адресу.</p>
{% endblock %}