Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions run.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,8 +118,11 @@ def main():
print("You dont seem to have created an account.Sign up to create a new account.")
print('\n')
elif short_code == 'ln':
print("Enter your password to login.")
search_account = input()
print("Enter your username and password to login.")
print('\n')
input('Username:')
print('\n')
search_account = input('Password:')
if check_existing_accounts(search_account):
search_cred = find_account(search_account)
print("\033[1;32;1m \n")
Expand Down