Here's an article describing how to add a Smart Lock login to your website: https://developers.google.com/web/updates/2016/04/credential-management-api
Basically, add some code to the website (https) like this (you can try it in the JavaScript console:
navigator.credentials.get({ password: true, // `true` to obtain password credentials }).then(function(cred) { // continuation which submits the credential and signs the user in ...
Here is the complete sample website: https://credential-management-sample.appspot.com/
As soon as the user used these credentials, or you saved it using navigator.credentials.store() , in the future it can be obtained automatically (without clicking the user).
For more information about this, go into this conversation from Google I / O (details about the credential management API start in about 8 minutes),
Steven soneff
source share