Hi,
i had written a login page in
jsf with fields UserName and Password.
Now i had two buttons named Login and Clear.
When i enter username and password values and press enter key nothing is happening. i mean the submit is not happening. but when i press the login button it is being submitted.
Now i want like after i enter password and press Enter button, the submit needs to happen.
Please help me in this matter.
here is the login page jsf code:
<h:form id="mainFrm" >
User Name:<h:inputText id="username" value="#{loginBean.userName}"
required="true" maxlength="30" />
Pasword: <h:inputSecret id="passwordd" value="#{loginBean.password}" required="true" maxlength="30" />
<h:commandButton action="#{loginBean.authenticateUser}"
value="Login" styleClass="button" />
<h:commandButton type="reset" value="Clear"
styleClass="button" />
</h:form>