Mozilla 도움말 검색

고객 지원 사기를 피하세요. 저희는 여러분께 절대로 전화를 걸거나 문자를 보내거나 개인 정보를 공유하도록 요청하지 않습니다. "악용 사례 신고"옵션을 사용하여 의심스러운 활동을 신고해 주세요.

Learn More

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

  • 1 답장
  • 1 이 문제를 만남
  • 16 보기
  • 최종 답변자: 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".