I've a problem with my login.xhtml page called from the login-config component within the web.xml :
<login-config>
<auth-method>FORM</auth-method>
<realm-name>file</realm-name>
<form-login-config>
<form-login-page>/faces/Login/login.xhtml</form-login-page>
<form-error-page>/faces/Login/error.xhtml</form-error-page>
</form-login-config>
</login-config>
The login.xhtml uses a template defined in loginTemplate.xhtml:
<ui:composition template="./loginTemplate.xhtml">
LoginTemplate contains:
<p:layout fullPage="true">
<p:layoutUnit position="west" resizable="false" size="245">
<ui:insert name="left" >
Login
</ui:insert>
</p:layoutUnit>
<p:layoutUnit position="center" resizable="false">
<ui:insert name="content">
Abstract
</ui:insert>
</p:layoutUnit>
</p:layout>
The login.xhtml page contains a form with a and field in the "left" part.
The page is rendered in an unexpected way, and the inputText and password field accept no values!
What am I doing wrong here?
Regards