From 48478dd8bfa1f792ff10841d768a50d3280d5cc1 Mon Sep 17 00:00:00 2001 From: Bobby Date: Fri, 19 Sep 2025 03:35:17 +0530 Subject: moved comment spam detection to async queue --- authentication/views.py | 3 --- 1 file changed, 3 deletions(-) (limited to 'authentication') 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) -- cgit v1.2.3