]> git.mxchange.org Git - pizzaservice-war.git/blob - web/user/login_contact_data_saved.xhtml
removed double-redundant XML parsing instructions, (X)HTML doesn't want it anyway
[pizzaservice-war.git] / web / user / login_contact_data_saved.xhtml
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2 <html
3         lang="#{localizationController.language}" xml:lang="#{localizationController.language}"
4         xmlns="http://www.w3.org/1999/xhtml"
5           xmlns:ui="http://xmlns.jcp.org/jsf/facelets"
6           xmlns:h="http://xmlns.jcp.org/jsf/html"
7           xmlns:f="http://xmlns.jcp.org/jsf/core"
8           >
9
10         <ui:composition template="/WEB-INF/templates/login/user/user_base.tpl">
11                 <ui:define name="login_title">#{msg.PAGE_TITLE_LOGIN_CONTACT_DATA_SAVED}</ui:define>
12
13                 <ui:define name="content_header">
14                         #{msg.CONTENT_TITLE_LOGIN_CONTACT_DATA_SAVED}
15                 </ui:define>
16
17                 <ui:define name="content">
18                         <ui:fragment rendered="#{userLoginController.isUserLoggedIn()}">
19                                 <ui:include src="/WEB-INF/templates/generic/message_box.tpl">
20                                         <ui:param name="message" value="#{msg.LOGIN_MESSAGE_DATA_SAVED}" />
21                                 </ui:include>
22                         </ui:fragment>
23
24                         <ui:fragment rendered="#{not userLoginController.isUserLoggedIn()}">
25                                 <ui:include src="/WEB-INF/templates/user/user_not_logged_in.tpl" />
26                         </ui:fragment>
27                 </ui:define>
28         </ui:composition>
29 </html>