]> git.mxchange.org Git - jjobs-war.git/blob - web/user/login_user_change_personal_data.xhtml
f77c383eee03fc1a5aa7572718fcc7d1db98e91c
[jjobs-war.git] / web / user / login_user_change_personal_data.xhtml
1 <?xml version="1.0" encoding="UTF-8" ?>
2 <ui:composition template="/WEB-INF/templates/login/user/user_base.tpl"
3                                 xmlns="http://www.w3.org/1999/xhtml"
4                                 xmlns:widgets="http://mxchange.org/jsf/core/widgets"
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         <ui:define name="login_title">
10                 <h:outputText value="#{msg.PAGE_TITLE_USER_LOGIN_CHANGE_PERSONAL_DATA}" />
11         </ui:define>
12
13         <ui:define name="content_header">
14                 <h:outputText value="#{msg.CONTENT_TITLE_LOGIN_USER_CHANGE_PERSONAL_DATA}" />
15         </ui:define>
16
17         <ui:define name="content">
18                 <h:panelGroup styleClass="table table-medium" layout="block" rendered="#{userLoginController.isUserLoggedIn() and featureController.isFeatureEnabled('change_user_personal_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 divider-right" 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                 <widgets:outputMessageBox message="#{msg.ERROR_LOGIN_USER_EDIT_DATA_DISABLED}" messageStyleClass="alert-danger" rendered="#{not featureController.isFeatureEnabled('change_user_personal_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>