Building a custom login page and I got just about everything working. The issue I am running into is when I check to see if the userid exist the sql statement returns a none type and I error out:
TypeError: ‘NoneType’ object is not subscriptable
Code looks like this:
if hashed_pw is None:
proceed = 1
Any ideas?