These are the two input tags you need to fill in
Code:
<input type="text" name="email" value="" class="textblue" size="25"/>
<input type="password" name="password" class="textblue" size="25"/>
Using the WebBrowser control after you navigate to your site it will enter the _DocumentComplete event. In this event you must make sure the correct page is fully loaded by comparing the original URL you navigated to with the function argument URL. If they are the same then you do this:
Code:
'
'
WebBrowser1.Document.All("email").Value = your-user-id (or your-email)
WebBrowser1.Document.All("password").Value = your-password
'
'