gpt4 book ai didi

forms - 浏览器如何决定哪些表单字段是用户名/密码?

转载 作者:行者123 更新时间:2023-12-02 11:19:40 27 4
gpt4 key购买 nike

现代浏览器保存密码。哪些标准会影响此决定?

背景:

我有一个具有以下形式的注册页面:

    <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 似乎认为字段 securityAnswerpassword是 user/pw 字段,会带来尴尬的后果(存储为用户名的安全答案很糟糕)。

最佳答案

我猜它假设“密码”上方的字段是用户名。您可以尝试重新排序。

关于forms - 浏览器如何决定哪些表单字段是用户名/密码?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1523212/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com