Advertisement
Guest User

Untitled

a guest
Sep 18th, 2016
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. # coding: UTF-8
  2. # import time
  3. import getpass
  4. # import os
  5.  
  6. # +------------------------+
  7. # | AUTENTICADOR v1.0 |
  8. # | |
  9. # | MADE BY VICTOR |
  10. # +------------------------+
  11.  
  12. user = input('Username: ')
  13. password = getpass.getpass('Password: ')
  14.  
  15. if user == 'Victor' and password == 'Leticia&Victor':
  16. print('[*] Login successful')
  17. # Limpar a tela (opcional)
  18. #time.sleep(1.30)
  19. #os.system('clear')
  20. else:
  21. print('[!] Username or password is incorrect. Try again')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement