What do you need to do in the login form for the browser to request registration information? I have an input with the name "username" and one with the name "password".
In my browser, I asked if the password should be remembered, and it works on most sites, but there isn’t on the site I’m testing, so I’m wondering what can be changed so that it remembers.
I also use type = password for the password field, and it logs in the order and that's it, but neither firefox nor safari want to remember it. this is not a huge problem, but it would be nice to find out
thank
here is the form:
<form id = "login" method = "post" action = "/login.php">
<div class = "cell">
<div class = "left"> Username: </div>
<div class = "right" >
<input type = "text" id = "username" name = "username">
</div>
<div class = "left"> Password: </div>
<div class = "right">
<input type = " password "id =" password "name =" password ">
</div>
<div class =" left "> </div>
<div class =" right ">
<input type =" submit "value ="Login "/>
</div>
<div class =" clear "> </div>
</div>
</ form>