搜索 | 用户支持

防范以用户支持为名的诈骗。我们绝对不会要求您拨打电话或发送短信,及提供任何个人信息。请使用“举报滥用”选项报告涉及违规的行为。

Learn More

As a developer can I somehow tell the password manager which field to pick for the username of new accounts ?

  • 1 个回答
  • 1 人有此问题
  • 23 次查看
  • 最后回复者为 TyDraniu

more options

I am a developer for a web application. My clients have this issue that whenever a user creates an account the mozilla password manager promps them to save their new account. The problem is that the username fields is pre-filled with the user phone number.

My question is:

Is there a way (maybe with some attributes), to tell the password manager which field to pick for the username.

The current html form structure is very similar to this

<form>

   <input name="email" type="email" />
   <input name="phone" type="text"/>
   <input name="password" type="password"/>
   <input name="password_confirm" type="password"/>

</form>

I am a developer for a web application. My clients have this issue that whenever a user creates an account the mozilla password manager promps them to save their new account. The problem is that the username fields is pre-filled with the user phone number. My question is: Is there a way (maybe with some attributes), to tell the password manager which field to pick for the username. The current html form structure is very similar to this <form> <input name="email" type="email" /> <input name="phone" type="text"/> <input name="password" type="password"/> <input name="password_confirm" type="password"/> </form>

所有回复 (1)

more options

stefangramadnikov said

Is there a way (maybe with some attributes), to tell the password manager which field to pick for the username. The current html form structure is very similar to this <form> <input name="email" type="email" /> <input name="phone" type="text"/> </form>

So it should be

 <input name="username" type="text"/>

instead of "phone".