What causes Firefox to prompt user to remember password?
Posted: Tue Jan 13, 2009 11:15 am
~pickle | Please use [ code=html ], [ code=php ], etc tags where appropriate when posting code. Your post has been edited to reflect how we'd like it posted. Please read:
Posting Code in the Forums to learn how to do it too.
I've created a login form for my website. When a user logs in, it works fine, but for some reason Firefox is not prompting to "Remember password". Does anyone know why? I've scrapped all my code and boiled it down to a bare bones example and still I can't seem to figure out why Firefox won't prompt me. Here's what I've got:
And the URL to access to this page is as static as can be: http://www.example.com/login.html. Also, I've cleared my all my private data multiple times to ensure I was working with a clean slate in Firefox's password management system. Still, it will not prompt me to remember the password. What am I missing?
Thanks in advance.
~pickle | Please use [ code=html ], [ code=php ], etc tags where appropriate when posting code. Your post has been edited to reflect how we'd like it posted. Please read:
Posting Code in the Forums to learn how to do it too.
I've created a login form for my website. When a user logs in, it works fine, but for some reason Firefox is not prompting to "Remember password". Does anyone know why? I've scrapped all my code and boiled it down to a bare bones example and still I can't seem to figure out why Firefox won't prompt me. Here's what I've got:
Code: Select all
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Test</title>
</head>
<body>
<form method="POST" action="process.php">
<input type="text" name="username" size="20"><br>
<input type="password" name="password" size="20"><br>
<input type="submit" value="Submit" name="button">
</form>
</body>
</html>
Thanks in advance.
~pickle | Please use [ code=html ], [ code=php ], etc tags where appropriate when posting code. Your post has been edited to reflect how we'd like it posted. Please read: