Code:
user1='apples'
passw='bacon'
user2=raw_input("Username: ")
password=raw_input("Enter Password: ")
if user1==user2 and password==passw:
print "System Acessed..."
else:
print "Error: Incorrect username or password."
I've seen other ways to do this. Is this code insecure?
What are more efficient/better ways to make a python login?