I have below markup for input textbox
<ng-form id="LogForm" name="LogForm">
<input type="email" ng-enter="!LogForm.$invalid ? login() : ''" id="emailAddress" name="emailAddress" ng-model="loginForm.emailAddress" ng-pattern="/^[A-Za-z0-9._%+-]+@("@")[A-Za-z0-9.-]+\.[A-Za-z]{2,4}$/" required />
</ng-form>
I can see chrome saves password for the site, but it does not auto fill them
Any suggestion
Thanks