]> git.mxchange.org Git - addressbook-war.git/blob - web/WEB-INF/templates/generic/message_box.tpl
password1 and password2 is not clear enough, better <role>Password and <role>Password...
[addressbook-war.git] / web / WEB-INF / templates / generic / message_box.tpl
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
4         lang="#{localizationController.language}" xml:lang="#{localizationController.language}"
5         xmlns="http://www.w3.org/1999/xhtml"
6           xmlns:ui="http://xmlns.jcp.org/jsf/facelets"
7           xmlns:h="http://xmlns.jcp.org/jsf/html"
8           xmlns:f="http://xmlns.jcp.org/jsf/core"
9           >
10
11         <div class="message_box">
12                 <div class="message_header">
13                         #{msg.MESSAGE_BOX_TITLE}
14                 </div>
15
16                 <ui:fragment id="output_message" rendered="#{not empty message}">
17                         <div class="okay para">
18                                 #{message}
19                         </div>
20                 </ui:fragment>
21
22                 <ui:fragment id="output_message" rendered="#{empty message}">
23                         <div class="errors para">
24                                 #{msg.MESSAGE_BOX_PARAMETER_MESSAGE_EMPTY}
25                         </div>
26                 </ui:fragment>
27         </div>
28 </html>