Currently having an issue where websites are not asking to save my credentials. I kept the type="button" because we are calling a function in js. Any ideas as to why it may not be working?
<form>
<div class="card card-default p-4">
<div class="form-group">
<label class="m-0 text-bold">Username</label>
<input required type="text" class="form-control" placeholder="example@domain.com" data-bind="value: username">
</div>
<div class="form-group">
<label class="m-0 text-bold">Password</label>
<input required type="password" class="form-control" placeholder="" data-bind="value: password" autocomplete="on">
</div>
<div class="form-group mt-2">
<div class="row">
<div class="col-md-6 col-lg-5">
<button class="btn btn-block btn-outline-primary m-0" type="button" data-bind="click: signin">LOGIN</button>
</div>
<div class="col-md-6 col-lg-7 mt-2 mt-md-0 d-flex align-items-center">
<a class="forgot-password" href="#forgotpassword">Forgot password?</a>
</div>
</div>
</div>
</form>