I don't know if this is the best way, but you might try using your global_start plugin but surround the code with:
Code:
if (!defined('SKIP_SESSIONCREATE'))
{
// code here
}
I don't know how you'd use location:.
I think a form like this should work:
Code:
<form action="login.php" method="post">
<input type="hidden" name="do" value="login">
<input type="text" name="vb_login_username">
<input type="text" name="vb_login_password">
</form>
(obviously that's simplified and you'd want some formatting). If you want to send the password as an md5 hash (which vb noramally does) then you'd need to include some javascript.