aboutsummaryrefslogtreecommitdiff
path: root/authentication
diff options
context:
space:
mode:
authorBobby <[email protected]>2025-09-19 03:35:17 +0530
committerBobby <[email protected]>2025-09-19 03:35:17 +0530
commit48478dd8bfa1f792ff10841d768a50d3280d5cc1 (patch)
treebf187e5b1e86a0a11dbaef28375777ab096c7825 /authentication
parent026ba3fbd2fd1af94fccb3300f47e4ddbe1ffc66 (diff)
downloadthatcomputerscientist-48478dd8bfa1f792ff10841d768a50d3280d5cc1.tar.xz
thatcomputerscientist-48478dd8bfa1f792ff10841d768a50d3280d5cc1.zip
moved comment spam detection to async queue
Diffstat (limited to 'authentication')
-rw-r--r--authentication/views.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/authentication/views.py b/authentication/views.py
index fe1b170a..e91ec0fd 100644
--- a/authentication/views.py
+++ b/authentication/views.py
@@ -9,9 +9,6 @@ def login(request):
username = request.POST.get("username")
password = request.POST.get("password")
- print("Next:", next)
- print("Username:", username)
- print("Password:", password)
if username == "" or password == "" or username is None or password is None:
messages.error(request, "ErrorEmptyFields", extra_tags="LoginError")
return redirect(f"{next}?username={username}" if username else next)