Python Forum
Using SQLite - can't match my input password to the stored one
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Using SQLite - can't match my input password to the stored one
#3
Hello,

I think that there is a typo on line 10.
if userID == loginDetails[0] and password == loginDetails[0]:
should be:
if userID == loginDetails[0] and password == loginDetails[1]:
Reply


Messages In This Thread
RE: Using SQLite - can't match my input password to the stored one - by squenson - Dec-11-2017, 05:33 PM

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020