]> git.mxchange.org Git - jjobs-war.git/blob - web/user/login_edit_user_data.xhtml
removed double-redundant XML parsing instructions, (X)HTML doesn't want it anyway
[jjobs-war.git] / web / user / login_edit_user_data.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_EDIT_USER_DATA}</ui:define>
12
13                 <ui:define name="content_header">
14                         #{msg.CONTENT_TITLE_LOGIN_EDIT_USER_DATA}
15                 </ui:define>
16
17                 <ui:define name="content">
18                         <ui:fragment rendered="#{userLoginController.isUserLoggedIn()}">
19                                 <div class="table">
20                                         <div class="table_header">
21                                                 #{msg.LOGIN_EDIT_USER_DATA_TITLE}
22                                         </div>
23
24                                         <div class="para notice">
25                                                 <h:outputText value="#{msg.LOGIN_CHOOSE_PERSONAL_DATA_EMAIL_PASSWORD_NOTICE}" />
26                                         </div>
27
28                                         <div class="para">
29                                                 <ul>
30                                                         <li>
31                                                                 <h:link title="#{msg.LINK_LOGIN_CHANGE_PERSONAL_DATA_TITLE}" outcome="login_change_personal_data" value="#{msg.LINK_LOGIN_CHANGE_PERSONAL_DATA}" />
32                                                         </li>
33                                                         <li>
34                                                                 <h:link title="#{msg.LINK_LOGIN_CHANGE_EMAIL_ADDRESS_TITLE}" outcome="login_change_email_address" value="#{msg.LINK_LOGIN_CHANGE_EMAIL_ADDRESS}" />
35                                                         </li>
36                                                         <li>
37                                                                 <h:link title="#{msg.LINK_LOGIN_CHANGE_PASSWORD_TITLE}" outcome="login_change_password" value="#{msg.LINK_LOGIN_CHANGE_PASSWORD}" />
38                                                         </li>
39                                                 </ul>
40                                         </div>
41                                 </div>
42                         </ui:fragment>
43
44                         <ui:fragment rendered="#{not userLoginController.isUserLoggedIn()}">
45                                 <ui:include src="/WEB-INF/templates/user/user_not_logged_in.tpl" />
46                         </ui:fragment>
47                 </ui:define>
48         </ui:composition>
49 </html>