]> git.mxchange.org Git - addressbook-war.git/blob - web/admin/user/admin_user_unlock.xhtml
Continued a bit: (cherry-pick)
[addressbook-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_medium">
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="para">
35                                                 <div>
36                                                         <h:outputLabel for="contactGender" value="#{msg.PERSONAL_DATA_GENDER}" />
37                                                 </div>
38
39                                                 <div>
40                                                         <h:outputText id="contactGender" value="#{msg[beanHelper.user.userContact.contactGender.messageKey]}" />
41                                                 </div>
42                                         </div>
43
44                                         <div class="para">
45                                                 <div>
46                                                         <h:outputLabel for="contactFirstName" value="#{msg.PERSONAL_DATA_FIRST_NAME}" />
47                                                 </div>
48
49                                                 <div>
50                                                         <h:outputText id="contactFirstName" value="#{beanHelper.user.userContact.contactFirstName}" />
51                                                 </div>
52                                         </div>
53
54                                         <div class="para">
55                                                 <div>
56                                                         <h:outputLabel for="contactFamilyName" value="#{msg.PERSONAL_DATA_FAMILY_NAME}" />
57                                                 </div>
58
59                                                 <div>
60                                                         <h:outputText id="contactFamilyName" value="#{beanHelper.user.userContact.contactFamilyName}" />
61                                                 </div>
62                                         </div>
63
64                                         <div class="para">
65                                                 <div>
66                                                         <h:outputLabel for="userLockReason" value="#{msg.ADMIN_ENTER_USER_LOCK_REASON}" />
67                                                 </div>
68
69                                                 <div>
70                                                         <h:inputTextarea id="userLockReason" value="#{adminUserController.userLockReason}" cols="50" rows="10" required="true" requiredMessage="#{msg.ADMIN_USER_UNLOCK_REASON_REQUIRED}" rendered="#{beanHelper.user.userAccountStatus == 'CONFIRMED'}" />
71
72                                                         <h:outputText value="#{adminUserController.userLockReason}" rendered="#{beanHelper.user.userAccountStatus == 'LOCKED'}" />
73
74                                                         <h:outputText value="#{msg.ERROR_CANNOT_UN_LOCK_USER_ACCOUNT_UNCONFIRMED}" rendered="#{beanHelper.user.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                                                 <ui:fragment rendered="#{beanHelper.user.userAccountStatus == 'CONFIRMED'}">
82                                                         <h:commandButton styleClass="submit" type="submit" action="#{adminUserController.lockUserAccount(beanHelper.user)}" value="#{msg.BUTTON_ADMIN_LOCK_USER_ACCOUNT}" />
83                                                 </ui:fragment>
84
85                                                 <ui:fragment rendered="#{beanHelper.user.userAccountStatus == 'LOCKED'}">
86                                                         <h:commandButton styleClass="submit" type="submit" action="#{adminUserController.unlockUserAccount(beanHelper.user)}" value="#{msg.BUTTON_ADMIN_UNLOCK_USER_ACCOUNT}" />
87                                                 </ui:fragment>
88
89                                                 <h:outputText styleClass="errors" value="#{msg.ERROR_CANNOT_UN_LOCK_USER_ACCOUNT_UNCONFIRMED}" rendered="#{beanHelper.user.userAccountStatus == 'UNCONFIRMED'}" />
90                                         </div>
91                                 </div>
92                         </h:form>
93                 </ui:define>
94         </ui:composition>
95 </html>