I have some input fields in my html DOM which have absolutely nothing special, but Chrome offers me the saved credentials when I click on it. This is annoying if you have a field which only contains a persons name for example. As this is not on all of my input fields, there must be a reason why Chrome means that this is a credential field? Does anyone know what is triggering Chrome to offer his credential auto-complete window on an input field?
This is an example:
<label><input type="text" class="feFilterNameId filterInput" value=""></label>
.filterInput /* input box for edit window */.  
{
    font-size: 14px;
    font-weight: normal;
    width: 97%;
    height: 16px;
    color: var(--filter-text-color);  
}
                
 
    