]> git.mxchange.org Git - jjobs-war.git/blob - web/user/login_change_email_address.xhtml
Please cherry-pick:
[jjobs-war.git] / web / user / login_change_email_address.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">
12                         <h:outputText value="#{msg.PAGE_TITLE_USER_LOGIN_CHANGE_EMAIL_ADDRESS}" />
13                 </ui:define>
14
15                 <ui:define name="content_header">
16                         <h:outputText value="#{msg.CONTENT_TITLE_USER_LOGIN_CHANGE_EMAIL_ADDRESS}" />
17                 </ui:define>
18
19                 <ui:define name="content">
20                         <h:panelGroup styleClass="table" layout="block" rendered="#{userLoginController.isUserLoggedIn() and featureController.isFeatureEnabled('edit_user_data') and (not userLoginController.ifUserMustChangePassword() or not featureController.isFeatureEnabled('user_must_change_password'))}">
21                                 <div class="table_header">
22                                         <h:outputText value="#{msg.LOGIN_CHANGE_EMAIL_ADDRESS_TITLE}" />
23                                 </div>
24
25                                 <h:form id="form_login_change_email_address">
26                                         <div class="para">
27                                                 <fieldset class="fieldset" id="change_email">
28                                                         <legend title="#{msg.LOGIN_CHANGE_EMAIL_LEGEND_TITLE}">
29                                                                 <h:outputText value="#{msg.LOGIN_CHANGE_EMAIL_LEGEND}" />
30                                                         </legend>
31
32                                                         <div class="table_row">
33                                                                 <div class="table_left">
34                                                                         <h:outputText value="#{msg.LOGIN_CHANGE_EMAIL_OLD_ADDRESS}" />
35                                                                 </div>
36
37                                                                 <div class="table_right">
38                                                                         <h:outputText value="#{contactController.emailAddress}" />
39                                                                 </div>
40
41                                                                 <div class="clear"></div>
42                                                         </div>
43
44                                                         <ui:include src="/WEB-INF/templates/login/user/user_change_email_address_repeat_fields.tpl" />
45                                                 </fieldset>
46                                         </div>
47
48                                         <ui:include src="/WEB-INF/templates/login/login_enter_current_password.tpl" />
49
50                                         <div class="table_footer">
51                                                 <h:commandButton class="reset right_space" type="reset" value="#{msg.BUTTON_RESET_FORM}" />
52                                                 <h:commandButton class="submit" type="submit" id="change_email" value="#{msg.BUTTON_CHANGE_EMAIL_ADDRESS}" action="#{emailChangeController.doChangeEmailAddress()}" />
53                                         </div>
54                                 </h:form>
55                         </h:panelGroup>
56
57                         <h:outputText styleClass="errors" value="#{msg.ERROR_LOGIN_USER_EDIT_DATA_DISABLED}" rendered="#{not featureController.isFeatureEnabled('edit_user_data')}" />
58
59                         <ui:fragment rendered="#{userLoginController.ifUserMustChangePassword()}">
60                                 <h:link outcome="user_change_password" value="#{msg.USER_LOGIN_MUST_CHANGE_PASSWORD}" />
61                         </ui:fragment>
62
63                         <ui:fragment rendered="#{not loginController.isUserLoggedIn()}">
64                                 <ui:include id="login_only" src="/WEB-INF/templates/generic/user_not_logged_in.tpl" />
65                         </ui:fragment>
66                 </ui:define>
67         </ui:composition>
68 </html>