WebBrowser1.Document.GetElementById("usernameTextbox").SetAttribute("value", Username.text)
WebBrowser1.Document.GetElementById("passwordTextbox").SetAttribute("value", Password.text)
WebBrowser1.Document.GetElementById("LoginButton").InvokeMember("Click")
If WebBrowser1.DocumentTex*****ntains("Successfully logged in...") Then
MsgBox("Correct!")
Else
MsgBox("Incorrect!")
End If