Hi guys i already looked up at that topic JSF Chrome Save Password on Login form which is very similar to my problem. But the solution doesn't work in my case because I don't use Primefaces. The form looks as following:
<h:form id="loginform" class="form-signin " >
<h1 class="form-signin-heading "> <span class="glyphicon glyphicon-user"/> Login Form</h1>
<h:inputText id="username" value="#{loginHandler.inputUsername}"
styleClass="form-control" pt:placeholder="Username"
required="true" requiredMessage="Please type in your Username" />
<h:message style="color: red" for="username"/>
<br></br>
<h:inputSecret id="password" value="#{loginHandler.inputPassword}" class="form-control"
pt:placeholder="Password" required="true" pt:type="password"
requiredMessage="Please type in your password" />
<h:message style="color: red" for="password"/>
<br/>
<h:commandButton id="loginbutton" action="#{loginHandler.login()}"
value="Login" class="btn btn-lg btn-primary btn-block" />
<h:message id="loginerror" style="color: red" for="loginbutton"/>
</h:form>
I also used bootstrap but that shouldn't influence the matter right now.
I want that Google saves the Username and password or at least enables it. Because each time i login it doesn't show the possibility of saving the password.
Does anyone have an idea ? Thanks !!