fuck ass bitch
This commit is contained in:
some weird guy
2023-09-15 16:34:14 -07:00
parent 77c8d4b112
commit a146a0fbb0
+2 -2
View File
@@ -304,10 +304,10 @@ def signup_page(request):
check_others = Profile.objects.filter(user__addr=request.META['REMOTE_ADDR'], let_freedom=False).exists()
if check_others:
return HttpResponseBadRequest("Unfortunately, you cannot make any accounts at this time. This restriction was set for a reason, please contact the administration. Please don't bypass this, as if you do, you are just being ignorant. If you have not made any accounts, contact the administration and this restriction will be removed for you.")
check_othersban = User.objects.filter(addr=request.META['REMOTE_ADDR'], active=False).exists()
check_othersban = User.objects.filter(addr=request.META['REMOTE_ADDR'], is_active=False).exists()
if check_othersban:
return HttpResponseBadRequest("You cannot sign up while banned.")
check_signupban = User.objects.filter(signup_addr=request.META['REMOTE_ADDR'], active=False).exists()
check_signupban = User.objects.filter(signup_addr=request.META['REMOTE_ADDR'], is_active=False).exists()
if check_signupban:
return HttpResponseBadRequest("Get on your hands and knees")
if iphub(request.META['REMOTE_ADDR']):