Re: No Login with IE6
You can click in the form element if you click within 1 px of the top of the element. It’s being blocked/covered by something. I haven’t looked too closely, but I’m pretty sure the problem is that your <label>
tags are encapsulating your input elements. They should be before the form element, like this:
<label>Username:</label>
<input "input stuff" />
Yours is like this:
<label>Username:
<input "input stuff" />
</label>
Try that and see if that helps.
-Ron