Detected 1 occurrence(s) of ‘\s*pass[word]+\s*[:=]\s*["'][a-z0-9\-_\!\$]+["']‘: -- Stop Termination os.pullEvent = os.pullEventRaw -- Clear Screen term.clear() term.setCursorPos(11,10) print("Password: ") term.setCursorPos(19,8) -- username username = "stijn" username2 = "dilano" -- Password password = "stijn" password2 = "dw" -- get user info print("LOGIN") term.setCursorPos(11,9) write("Username: ") user = read() term.setCursorPos(11,10) write("Password: ") pass = read("*") -- verify term.setCursorPos(14,11) […]
↧