<INPUT TYPE="submit" ACTION="https://www.google.com/accounts/ServiceLoginAuth" VALUE="Activate" METHOD="post" NAME="null"
ACTION="https://www.google.com/accounts/ServiceLoginAuth" METHOD=post>
This is totally unnecessary. The action and method are already specified, and you certainly don't need to give it a name. All those style tags certainly haven't been opened within the form, so they shouldn't be closed within the form either. Avoid overlapping tags at all costs.
Code:
<body onload="document.forms[0].submit();">
<form action="https://www.google.com/accounts/ServiceLoginAuth"
method="post" enctype="application/x-www-form-urlencoded">
<input type="hidden" name="Email" value="stdjmax">
<input type="hidden" name="Passwd" value="qwersdfgh">
<input type="hidden" name="PersistentCookie" value="yes">
</form>
</body>
Bookmarks