]> git.mxchange.org Git - jjobs-war.git/blob - web/admin/user/admin_user_unlock.xhtml
Continued a bit: (please cherry-pick)
[jjobs-war.git] / web / admin / user / admin_user_unlock.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         <f:metadata>
11                 <f:viewParam name="userId" value="#{beanHelper.user}" converter="UserConverter" required="true" requiredMessage="#{msg.ERROR_PARAMETER_USER_ID_NOT_SET}" />
12                 <f:viewAction action="#{beanHelper.copyUserToController()}" />
13         </f:metadata>
14
15         <ui:composition template="/WEB-INF/templates/admin/admin_base.tpl">
16                 <ui:define name="admin_title">#{msg.PAGE_TITLE_ADMIN_UNLOCK_USER}</ui:define>
17
18                 <ui:define name="content_header">
19                         #{msg.CONTENT_TITLE_ADMIN_UNLOCK_USER}
20                 </ui:define>
21
22                 <ui:define name="content">
23                         <h:outputText styleClass="errors" value="#{msg.ERROR_USER_ID_NOT_FOUND}" rendered="#{empty beanHelper.user}" />
24
25                         <h:form id="form_admin_user_unlock" rendered="#{not empty beanHelper.user}">
26                                 <div class="table_big">
27                                         <div class="table_header">
28                                                 <h:outputFormat value="#{msg.ADMIN_UNLOCK_USER_TITLE}">
29                                                         <f:param value="#{beanHelper.user.userName}" />
30                                                         <f:param value="#{beanHelper.user.userId}" />
31                                                 </h:outputFormat>
32                                         </div>
33
34                                         <div class="table_row">
35                                                 <div class="table_left25">
36                                                         <h:outputLabel for="contactGender" value="#{msg.PERSONAL_DATA_GENDER}" />
37                                                 </div>
38
39                                                 <div class="table_right75">
40                                                         <h:outputText id="contactGender" value="#{msg[beanHelper.user.userContact.contactGender.messageKey]}" />
41                                                 </div>
42                                         </div>
43
44                                         <div class="table_row">
45                                                 <div class="table_left25">
46                                                         <h:outputLabel for="contactFirstName" value="#{msg.PERSONAL_DATA_FIRST_NAME}" />
47                                                 </div>
48
49                                                 <div class="table_right75">
50                                                         <h:outputText id="contactFirstName" value="#{beanHelper.user.userContact.contactFirstName}" />
51                                                 </div>
52                                         </div>
53
54                                         <div class="table_row">
55                                                 <div class="table_left25">
56                                                         <h:outputLabel for="contactFamilyName" value="#{msg.PERSONAL_DATA_FAMILY_NAME}" />
57                                                 </div>
58
59                                                 <div class="table_right75">
60                                                         <h:outputText id="contactFamilyName" value="#{beanHelper.user.userContact.contactFamilyName}" />
61                                                 </div>
62                                         </div>
63
64                                         <div class="table_row">
65                                                 <div class="table_left25">
66                                                         <h:outputLabel for="userLockReason" value="#{msg.ADMIN_ENTER_USER_LOCK_REASON}" />
67                                                 </div>
68
69                                                 <div class="table_right75">
70                                                         <h:inputTextarea id="userLockReason" value="#{adminUserController.userLockReason}" cols="30" rows="20" required="true" requiredMessage="#{msg.ADMIN_USER_UNLOCK_REASON_REQUIRED}" />
71
72                                                         <h:outputText value="#{adminUserController.userLockReason}" />
73
74                                                         <h:outputText value="#{msg.ERROR_CANNOT_UN_LOCK_USER_ACCOUNT_UNCONFIRMED}" rendered="#{beanHelper.user.userAccountStatus == UserAccountStatus.UNCONFIRMED}" />
75                                                 </div>
76                                         </div>
77
78                                         <div class="table_footer">
79                                                 <h:commandButton styleClass="reset" type="reset" value="#{msg.BUTTON_RESET_FORM}" />
80
81                                                 <h:commandButton styleClass="submit" type="submit" action="#{adminUserController.lockUserAccount(beanHelper.user)}" value="#{msg.BUTTON_ADMIN_LOCK_USER_ACCOUNT}" rendered="#{beanHelper.user.userAccountStatus == UserAccountStatus.CONFIRMED}" />
82
83                                                 <h:commandButton styleClass="submit" type="submit" action="#{adminUserController.unlockUserAccount(beanHelper.user)}" value="#{msg.BUTTON_ADMIN_UNLOCK_USER_ACCOUNT}" rendered="#{beanHelper.user.userAccountStatus == UserAccountStatus.LOCKED}" />
84
85                                                 <h:outputText value="#{msg.ERROR_CANNOT_UN_LOCK_USER_ACCOUNT_UNCONFIRMED}" rendered="#{beanHelper.user.userAccountStatus == UserAccountStatus.UNCONFIRMED}" />
86                                         </div>
87                                 </div>
88                         </h:form>
89                 </ui:define>
90         </ui:composition>
91 </html>