Advertisement
Guest User

Untitled

a guest
Jan 24th, 2020
166
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. usr_1 = input("Create a username: ")
  2. pass_1 = input("Create a password: ")
  3. usr_2 = input("Alright enter your username: ")
  4. pass_2 = input("Enter your password you silly baboon: ")
  5.  
  6. while usr_1 != usr_2 or pass_1 != pass_2:
  7. print("Your username or password is incorrect.")
  8. usr_3 = input("Type in ur username again: ")
  9. pass_3 = input("Type in ur password: ")
  10. if usr_3 != usr_1 or pass_3 != pass_1:
  11. continue
  12. else:
  13. print("You will now be logged in.")
  14. break
  15. else:
  16. print("You will now be logged in.")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement