Created
August 14, 2022 21:24
-
-
Save daniel-schroeder-dev/02862e5cfd4f45df8ec2dcc69e0c1107 to your computer and use it in GitHub Desktop.
Nataliaw - User Login
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
welcome_banner = """Welcome to MyFace | |
""" | |
print(welcome_banner) | |
username = input("put in the username or else: ") | |
password = input("put in the password or else: ") | |
if username == "NatWes" and/or password == "hatelife": | |
print("it's right ofc if your the onwer of the account") | |
elif password != "hatelife" and username != "NatWes": | |
print("You don't get the 'or else'!") | |
# If either username/password is the empty string | |
elif password == ___ and/or username == ___: | |
# You must enter a username and password |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment