]> git.mxchange.org Git - jjobs-war.git/blob - web/guest/user/lost_passwd.xhtml
removed double-redundant XML parsing instructions, (X)HTML doesn't want it anyway
[jjobs-war.git] / web / guest / user / lost_passwd.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/guest/guest_base.tpl">
11                 <ui:define name="guest_title">#{msg.PAGE_TITLE_USER_LOST_PASSWORD}</ui:define>
12
13                 <ui:define name="content_header">
14                         #{msg.CONTENT_TITLE_USER_LOST_PASSWORD}
15                 </ui:define>
16
17                 <ui:define name="content">
18                         <ui:fragment rendered="#{userController.isUserNameRequired()}">
19                                 <div class="para" id="user_lost_password_content">
20                                         <h:form id="lost_password_form">
21                                                 <div class="table">
22                                                         <div class="table_header">
23                                                                 <h:outputText value="#{msg.GUEST_LOST_PASSWORD_TITLE}" />
24                                                         </div>
25
26                                                         <fieldset id="login_data">
27                                                                 <legend title="#{msg.GUEST_LOST_PASSWORD_LEGEND_TITLE}">
28                                                                         <h:outputText value="#{msg.GUEST_LOST_PASSWORD_LEGEND}" />
29                                                                 </legend>
30
31                                                                 <div class="table_row">
32                                                                         <div class="table_left">
33                                                                                 <h:outputLabel for="id" value="#{msg.ENTER_USER_NAME}" />
34                                                                         </div>
35
36                                                                         <div class="table_right">
37                                                                                 <h:inputText styleClass="input" id="id" size="10" maxlength="20" value="#{passwordRecoveryController.userId}" />
38                                                                         </div>
39
40                                                                         <div class="clear"></div>
41                                                                 </div>
42
43                                                                 <div class="table_header">
44                                                                         <h:outputText value="#{msg.GUEST_LOST_PASSWORD_NUMBER_OR_EMAIL}" />
45                                                                 </div>
46
47                                                                 <div class="table_row">
48                                                                         <div class="table_left">
49                                                                                 <h:outputLabel for="email" value="#{msg.ENTER_EMAIL_ADDRESS}" />
50                                                                         </div>
51
52                                                                         <div class="table_right">
53                                                                                 <h:inputText styleClass="input" id="email" size="20" maxlength="255" value="#{passwordRecoveryController.emailAddress}" />
54                                                                         </div>
55
56                                                                         <div class="clear"></div>
57                                                                 </div>
58
59                                                         </fieldset>
60
61                                                         <div class="table_footer">
62                                                                 <h:commandButton styleClass="reset" type="reset" value="#{msg.BUTTON_RESET_FORM}" />
63                                                                 <h:commandButton styleClass="submit" type="submit" value="#{msg.BUTTON_CONTINUE_STEP_2}" action="#{passwordRecoveryController.doLostPasswordStep2()}" />
64                                                         </div>
65                                                 </div>
66                                         </h:form>
67                                 </div>
68                         </ui:fragment>
69
70                         <ui:fragment rendered="#{not userController.isUserNameRequired()}">
71                                 <h:outputText styleClass="errors" value="#{msg.ERROR_GUEST_USER_RECOVER_PASSWORD_DEACTIVATED}" />
72                         </ui:fragment>
73                 </ui:define>
74         </ui:composition>
75 </html>