LuckyMG

Help with a school project

Mar 8th, 2018
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.77 KB | None | 0 0
  1. print("Do you want to log in or signup?")
  2. choice=input()
  3. if(choice=="login"):
  4. print("Type your username")
  5. username=input()
  6. print("Now, choose your password")
  7. password=input()
  8. if((password!=username) and (len(password)<=7)):
  9. print("To log in type your password again")
  10. else:
  11. print("You cant use that password")
  12. password2=input()
  13. if(password==password2):
  14. print("You succesfully logged in")
  15. else:
  16. print("Your password is incorrect")
  17. if(choice=="signup"):
  18. print("Select your username")
  19. username2 = input()
  20. print("Now select your password")
  21. password3 = input()
  22. print("please confirm your password")
  23. password4=input()
  24. if(password3==password4):
  25. print("You created an account")
  26. else:
  27. print("There was an error with the account creation")
Add Comment
Please, Sign In to add comment