]> git.mxchange.org Git - addressbook-war.git/blobdiff - web/WEB-INF/templates.dist/login_page.xhtml
Home should go to guest area and not logout the user/recruiter
[addressbook-war.git] / web / WEB-INF / templates.dist / login_page.xhtml
index 0e593b63583e340f347b302ac73fcfd820e91dd7..dca91f086a686cfc39ac84fa5cafa8a7f8647f0b 100644 (file)
@@ -1,28 +1,29 @@
 <?xml version="1.0" encoding="UTF-8" ?>
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html
+<html xmlns="http://www.w3.org/1999/xhtml"
        lang="#{localizationController.language}" xml:lang="#{localizationController.language}"
-       xmlns="http://www.w3.org/1999/xhtml"
-         xmlns:ui="http://java.sun.com/jsf/facelets"
-         xmlns:h="http://xmlns.jcp.org/jsf/html"
-         xmlns:f="http://xmlns.jcp.org/jsf/core"
-         >
+       xmlns:ui="http://java.sun.com/jsf/facelets"
+       xmlns:h="http://xmlns.jcp.org/jsf/html"
+       xmlns:f="http://xmlns.jcp.org/jsf/core"
+       >
 
-       <ui:composition template="/WEB-INF/templates/login/login_base.tpl">
+       <ui:composition template="/WEB-INF/templates/login/user/user_base.tpl">
                <ui:define name="login_title">#{msg.PAGE_TITLE_LOGIN_FOO}</ui:define>
 
+               <ui:define name="menu">
+                       <ui:include id="menu" src="/WEB-INF/templates/login/user/user_menu.tpl" />
+               </ui:define>
+
                <ui:define name="content_header">
-                       #{msg.CONTENT_TITLE_LOGIN_FOO}
+                       #{msg.SUB_TITLE_LOGIN_FOO}
                </ui:define>
 
                <ui:define name="content">
-                       <ui:fragment rendered="#{loginController.isUserLoggedIn()}">
-                               Here goes your content.
-                       </ui:fragment>
+                       Here goes your content.
+               </ui:define>
 
-                       <ui:fragment rendered="#{not loginController.isUserLoggedIn()}">
-                               <ui:include id="login_only" src="/WEB-INF/templates/generic/user_not_logged_in.tpl" />
-                       </ui:fragment>
+               <ui:define name="footer">
+                       <ui:include id="footer" src="/WEB-INF/templates/login/user/user_footer.tpl" />
                </ui:define>
        </ui:composition>
 </html>