document.body.style['text-align'] = 'center' print ('

Hello, 🙋

') print ('What is your name?') inputAsync(process) def process(name): if name: window.name = name print(name + '
') print('

🔐 What is the password?

', end='') inputAsync(verify) else: return False def verify(passwd): if passwd=='lala': clearScreen() print('

🔓 Access Granted.

', end='') print('Welcome ' + name + '!') print ('👽👽') return True print('

🚫 Access Denied.

') print('Come on, try to find the passwd in the code.') return False