not leak usernames

This commit is contained in:
ASPP Student 2024-08-26 15:05:41 +03:00
parent b42ef06d91
commit 8e1d8309da

View file

@ -39,10 +39,10 @@ if __name__ == "__main__":
else:
username, password = get_credentials()
if username not in pwdb:
print('Wrong username!')
print('Wrong username or password!')
else:
if authenticate(username, password, pwdb):
print('Successfully authenticated!')
else:
print('Wrong password!')
print('Wrong username or password!')