]> git.mxchange.org Git - addressbook-war.git/blob - web/WEB-INF/templates/login/user/user_change_email_address_repeat_fields.tpl
Continued generally:
[addressbook-war.git] / web / WEB-INF / templates / login / user / user_change_email_address_repeat_fields.tpl
1 <?xml version="1.0" encoding="UTF-8" ?>
2 <ui:composition
3         xmlns="http://www.w3.org/1999/xhtml"
4         xmlns:ui="http://xmlns.jcp.org/jsf/facelets"
5         xmlns:h="http://xmlns.jcp.org/jsf/html"
6         xmlns:f="http://xmlns.jcp.org/jsf/core"
7         >
8
9         <div class="table_row">
10                 <div class="table_left">
11                         <h:outputLabel for="emailAddress" value="#{msg.LOGIN_CHANGE_EMAIL_ENTER_EMAIL}" />
12                 </div>
13
14                 <div class="table_right">
15                         <h:inputText class="input" id="emailAddress" size="20" maxlength="255" value="#{emailChangeController.emailAddress}" required="true" validator="EmailAddressValidator" />
16                 </div>
17
18                 <div class="clear"></div>
19         </div>
20
21         <div class="table_row">
22                 <div class="table_left">
23                         <h:outputLabel for="emailAddressRepeat" value="#{msg.LOGIN_CHANGE_EMAIL_ENTER_EMAIL_REPEAT}" />
24                 </div>
25
26                 <div class="table_right">
27                         <h:inputText class="input" id="emailAddressRepeat" size="20" maxlength="255" value="#{emailChangeController.emailAddressRepeat}" required="true" validator="EmailAddressValidator" />
28                 </div>
29
30                 <div class="clear"></div>
31         </div>
32 </ui:composition>