如何提示密码管理器输入用户名和密码?

时间:2018-10-11 22:14:48

标签: html

我有一个用于注册用户的html表单,我应该在提示密码管理器(google / lastpass / onepass / etc)中设置什么属性,以便电子邮件地址在提交时用作用户名?

<form>
    <input type='text' placeholder='email address'><br>
    <input type='text' placeholder='first name'><br>
    <input type='text' placeholder='last name'><br>
    <input type='text' placeholder='postcode'><br>
    <input type='password' placeholder='password'><br>
    <input type='password' placeholder='password again'><br>
    <button type='submit'>register</button>
</form>

1 个答案:

答案 0 :(得分:0)

大多数密码管理器为此目的使用name属性。

无论如何,您都需要提供一个,以便控制成功并将数据提交到服务器。