DAY 23: 100Days of Python

#DAY 23 100Dya of Python
print ("WELCOME TO THE TEST SYSTEM")

def login_details():
  while True:
    username = input("What is your name? ")
    password = input("Please Input your password ")
    if username == "Theophilus" and password == "solomon321":
      print("WELCOME TO MY TEST")
      break
    else:
      print("That is not the correct username or password. Try Again")
print("LOGIN SYSTEM")
login_details()