existing_users = {
'adam' : 'Test123'
}
unverified_users = []
status = ""
status = input("If you have an account, type YES, NO to create a new user, QUIT to exit: ")
status = status.lower()
max_attempts = 2
import getpass
while status != 'quit':
if status == 'yes':
usr_name = input("Please provide your username: ")
usr_pwd = getpass.getpass("Enter the password")
I can't get getpass to work, not sure what I'm doing wrrong. If I run the code I'm prompted for the user name and then nothing else happens ....
any suggestions ?