<form name="bizLoginForm" method="post" action"" >
it should be
<form name="bizLoginForm" method="post" action="" >
Missing = sign.
You also miss the name attribute inside your input tags, so change
<input type="text" id="loginUsername" />
and
<input type="password" id="loginPassword" />
to
<input type="text" id="loginUsername" name="loginUsername" />
and
<input type="password" id="loginPassword" name="loginPassword" />
sjobe source
share