Guest User

Untitled

a guest
Dec 13th, 2017
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. print('Sign Up Your Account')
  2. name=str(input('Create User Name:'))
  3. pas=str(input('Create Password:'))
  4. print('Your User Name And Password Saved..')
  5. print('Sign In Your Account')
  6. i=1
  7. l=3
  8. while(i != 5):
  9. check_user=str(input('User name:'))
  10. check_pass=str(input('Password:'))
  11. if(check_user == name and check_pass == pas):
  12. print('Login Successfull')
  13. break
  14. else:
  15. if(l == 0):
  16. print('You Have %d Time Login Request'%l)
  17. print('You Are Temporary Login Block For Few Munite')
  18. else:
  19. print('Wrong User Name or Password')
  20. print('You Have Only %d Time To Login Request'%l)
  21.  
  22. i+=1
  23. l-=1
Add Comment
Please, Sign In to add comment