diff options
| author | Bobby <[email protected]> | 2022-07-30 01:56:15 +0530 |
|---|---|---|
| committer | Bobby <[email protected]> | 2022-07-30 01:56:15 +0530 |
| commit | e27296b279aa0df54881bfbb0d4b7d892fdb22b9 (patch) | |
| tree | 6915c30235d98c30ed4efa75bdec2ea756fe7479 /users/urls.py | |
| parent | a52e5ee79eddcfef37139434c619cc4f3f6cb521 (diff) | |
| download | thatcomputerscientist-e27296b279aa0df54881bfbb0d4b7d892fdb22b9.tar.xz thatcomputerscientist-e27296b279aa0df54881bfbb0d4b7d892fdb22b9.zip | |
user verification email required for login
Diffstat (limited to 'users/urls.py')
| -rw-r--r-- | users/urls.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/users/urls.py b/users/urls.py index 24230426..b7cd5f82 100644 --- a/users/urls.py +++ b/users/urls.py @@ -9,6 +9,8 @@ urlpatterns = [ path('logout', views.logout_user, name='logout'), path('update', views.update_user, name='update'), path('changepassword', views.change_password, name='changepassword'), + path('sendverificationemail', views.send_verification_email, name='sendverificationemail'), + path('verifyemail/<uidb64>/<token>', views.verify_email, name='verifyemail'), ] # Configure Admin Site |
