]> git.mxchange.org Git - addressbook-war.git/blob - web/user/lost_passwd.xhtml
Continued:
[addressbook-war.git] / web / user / lost_passwd.xhtml
1 <?xml version="1.0" encoding="UTF-8" ?>
2 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3 <html xmlns="http://www.w3.org/1999/xhtml"
4           xmlns:ui="http://java.sun.com/jsf/facelets"
5           xmlns:h="http://xmlns.jcp.org/jsf/html"
6           xmlns:c="http://xmlns.jcp.org/jsp/jstl/core"
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="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                         <div class="para" id="user_lost_password_content">
19                                 <h:form id="lost_password_form">
20                                         <div class="table">
21                                                 <div class="table_header">
22                                                         #{msg.GUEST_LOST_PASSWORD_TITLE}
23                                                 </div>
24
25                                                 <fieldset id="login_data">
26                                                         <legend title="#{msg.GUEST_LOST_PASSWORD_LEGEND_TITLE}">#{msg.GUEST_LOST_PASSWORD_LEGEND}</legend>
27
28                                                         <div class="table_row">
29                                                                 <div class="table_left">
30                                                                         <h:outputLabel for="id" value="#{msg.ENTER_USER_NAME}" />
31                                                                 </div>
32
33                                                                 <div class="table_right">
34                                                                         <h:inputText class="input" id="id" size="10" maxlength="20" />
35                                                                 </div>
36
37                                                                 <div class="clear"></div>
38                                                         </div>
39
40                                                         <div class="table_header">
41                                                                 #{msg.GUEST_LOST_PASSWORD_NUMBER_OR_EMAIL}
42                                                         </div>
43
44                                                         <div class="table_row">
45                                                                 <div class="table_left">
46                                                                         <h:outputLabel for="email" value="#{msg.ENTER_EMAIL_ADDRESS}" />
47                                                                 </div>
48
49                                                                 <div class="table_right">
50                                                                         <h:inputText class="input" id="email" size="20" maxlength="255" />
51                                                                 </div>
52
53                                                                 <div class="clear"></div>
54                                                         </div>
55
56                                                 </fieldset>
57
58                                                 <div class="table_footer">
59                                                         <h:commandButton class="reset" type="reset" value="#{msg.BUTTON_RESET_FORM}" />
60                                                         <h:commandButton class="submit" type="submit" value="#{msg.BUTTON_CONTINUE_STEP_2}" action="#{passwdRecoverController.doLostPasswordStep2()}" />
61                                                 </div>
62                                         </div>
63                                 </h:form>
64                         </div>
65                 </ui:define>
66         </ui:composition>
67 </html>