add mail verification on server side (does not send the mail for now)

This commit is contained in:
2024-09-09 21:47:55 +02:00
parent 0deb14c1ce
commit 45e1943c74
8 changed files with 72 additions and 57 deletions

View File

@ -22,5 +22,6 @@ urlpatterns = [
path("homePage",views.homePage, name='homePage'),
path("lobbyPage", views.lobbyPage, name='lobbyPage'),
path("login42", views.login42, name='login42'),
path("logout", views.logout, name='logout')
path("logout", views.logout, name='logout'),
path("verify", views.verify, name='verify')
]