chat v2
This commit is contained in:
SDE
2023-08-11 12:37:07 +03:00
parent bba583ae56
commit bbad0dc726
3 changed files with 11 additions and 0 deletions

View File

@@ -66,6 +66,13 @@ def user_profile_View(request):
return response
def logout_View(request):
from django.contrib.auth import logout
from django.shortcuts import redirect
logout(request)
return redirect('login_profile')
def login_View(request):
Dict = {}