I can't get my iPhone to remember my username and password for the login to my website. The controls I currently have are:
<input type="text" name="username" id="username" />
<input type="password" name="password" id="password" />
<select>
<option value="1">option1</option>
<option value="2">option2</option>
</select
<input type="checkbox" name="rememberMe" id="rememberMe" />
<input type="button" value="Login" />
When the select is removed, it all works magically. Is there a way to declare / give safari extra hints that this is a logon page?