]> git.mxchange.org Git - jjobs-war.git/blob - web/user/login_change_personal_data.xhtml
updated jar(s)
[jjobs-war.git] / web / user / login_change_personal_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_CHANGE_PERSONAL_DATA}</ui:define>
12
13                 <ui:define name="content_header">
14                         #{msg.CONTENT_TITLE_LOGIN_CHANGE_PERSONAL_DATA}
15                 </ui:define>
16
17                 <ui:define name="content">
18                         <h:panelGroup styleClass="table_medium" layout="block" rendered="#{userLoginController.isUserLoggedIn() and featureController.isFeatureEnabled('edit_user_data') and (not userLoginController.ifUserMustChangePassword() or not featureController.isFeatureEnabled('user_must_change_password'))}">
19                                 <div class="table_header">
20                                         <h:outputText value="#{msg.LOGIN_CHANGE_PERSONAL_DATA_TITLE}" />
21                                 </div>
22
23                                 <h:form id="form_login_change_personal">
24                                         <ui:include src="/WEB-INF/templates/contact/form_contact_data.tpl" />
25
26                                         <ui:include src="/WEB-INF/templates/login/user/user_enter_current_password.tpl" />
27
28                                         <ui:include src="/WEB-INF/templates/guest/guest_privacy_terms.tpl" />
29
30                                         <div class="table_footer">
31                                                 <h:commandButton styleClass="reset right_space" type="reset" value="#{msg.BUTTON_RESET_FORM}" />
32                                                 <h:commandButton styleClass="submit" type="submit" id="change_personal_data" value="#{msg.BUTTON_CHANGE_PERSONAL_DATA}" action="#{userController.doChangePersonalData()}" />
33                                         </div>
34                                 </h:form>
35                         </h:panelGroup>
36
37                         <h:outputText styleClass="errors" value="#{msg.ERROR_LOGIN_USER_EDIT_DATA_DISABLED}" rendered="#{not featureController.isFeatureEnabled('edit_user_data')}" />
38
39                         <ui:fragment rendered="#{userLoginController.ifUserMustChangePassword()}">
40                                 <h:link outcome="user_change_password" value="#{msg.USER_LOGIN_MUST_CHANGE_PASSWORD}" />
41                         </ui:fragment>
42
43                         <ui:fragment rendered="#{not userLoginController.isUserLoggedIn()}">
44                                 <ui:include src="/WEB-INF/templates/user/user_not_logged_in.tpl" />
45                         </ui:fragment>
46                 </ui:define>
47         </ui:composition>
48 </html>