Send an email when creating an account via POST /register

This commit is contained in:
thomas girod
2024-07-10 16:24:01 +02:00
parent 72cf5a3d5e
commit e15bcfae07
7 changed files with 846 additions and 764 deletions

View File

@ -75,7 +75,7 @@ urlpatterns = [
SithPasswordResetCompleteView.as_view(),
name="password_reset_complete",
),
path("register/", register, name="register"),
path("register/", UserCreationView.as_view(), name="register"),
# Group handling
path("group/", GroupListView.as_view(), name="group_list"),
path("group/new/", GroupCreateView.as_view(), name="group_new"),