现代浏览器保存密码。哪个标准会影响这个决定?
背景:
我有一个注册页面,其中包含以下表格:
<form action="/BlaBla/Account/Register" method="post">
<div>
<fieldset>
<legend>Account Information</legend>
<p>
<label for="username">
Username:</label>
<input id="username" name="username" type="text" value="" />
</p>
<p>
<label for="email">
Email:</label>
<input id="email" name="email" type="text" value="" />
</p>
<p>
<label for="invitationCode">
Invitation Code:</label>
<input id="invitationCode" name="invitationCode" type="text" value="" />
</p>
<p>
<label for="securityQuestion">
Security question:</label>
<input id="securityQuestion" name="securityQuestion" type="text" value="" />
</p>
<p>
<label for="securityAnswer">
Security answer:</label>
<input id="securityAnswer" name="securityAnswer" type="text" value="" />
</p>
<p>
<label for="password">
Password:</label>
<input id="password" name="password" type="password" />
</p>
<p>
<label for="confirmPassword">
Confirm password:</label>
<input id="confirmPassword" name="confirmPassword" type="password" />
</p>
<p class="buttons">
<input type="submit" value="Register" />
</p>
</fieldset>
</div>
</form>
Mozilla似乎认为字段securityAnswer
和password
是用户/ pw字段,后果很尴尬(安全答案存储为用户名不好)。
答案 0 :(得分:7)
我猜它假设'password'上面的字段是用户名。您可以尝试重新订购它们。
答案 1 :(得分:3)
此外,如果表单中有两个以上的字段,Internet Explorer的“记住密码”功能将不记得您的密码。
答案 2 :(得分:0)
输入类型设置为密码,因此......(例如<input type="password" name="blah" />
)