user = "admin"
password = "admin"
while true:
    ques1 = input("Enter your username: ")
    ques2 = input("Enter your password:")
 if ques1 == user and ques2 == password :
     print("Welcome")
     break
 else :
     print("username or password are wrong ! \nplease try again !")
python 3.7 while true loop gives error about unindent does not match any outer indentation level error on line 3
 
    