适当的HTML标记和身份验证流程是否与密码管理器兼容?

前端之家收集整理的这篇文章主要介绍了适当的HTML标记和身份验证流程是否与密码管理器兼容?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在开发一个用angular编写的webapp,似乎无法与各种密码管理器(Dashlane,LastPass等)进行交互.是否有关于 HTML标记和身份验证流程的指南以确保兼容性?这不仅适用于登录流程,还包括密码重置,用户名更改等内容.

解决方法

它似乎是 this question has already been asked,但不是在AngularJS的上下文中.

https://lastpass.com/support.php?cmd=showfaq&id=3385开始

While LastPass can work on most website logins,if you are developing your own site you can help make it LastPass-compatible by using a simple form submit with a username,password,and submit field.

Here’s an example:

<form action="https://mypage.com/blah" method="post">
  <input type="text" name="username" id="username" value=""/>
  <input type="password" name="password" id="password" value=""/>
  <input type="submit" value="LOGIN"/>
</form>

As far as what to avoid — always create the form on page load,even if you hide and show it to people clicking log in,it’s better to be there on page load. Avoid ajax for logging in and avoid method=GET

因此,除了为控件提供名称属性之外,LastPass还建议在首次加载时在HTML中已经存在登录表单标记.这个马

原文链接:https://www.f2er.com/html/225483.html

猜你在找的HTML相关文章