Login
Login Page
To replace the default login page, add ui:define name="login"
to the
existing template to define your new login component as shown below
<ui:composition template="/layouts/BasicTemplate.xhtml">
<ui:define name="login">
<ic:internaltest.ui.YourOwnLoginComponent />
</ui:define>
</ui:composition>
Login Error Page
This page is to show an error message instead of the Login page when you are using external authentication and the user is not available in your application user list.
To replace default login error page, extend existing templates with
ui:define name="loginErrorPage"
to define your new login error component like below
<ui:composition template="/layouts/BasicTemplate.xhtml">
<ui:define name="loginErrorPage">
<ic:internaltest.ui.YourOwnLoginErrorComponent />
</ui:define>
</ui:composition>