aboutsummaryrefslogtreecommitdiffstats
path: root/tests/projects/plugins/project/src/web/sample.xhtml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/projects/plugins/project/src/web/sample.xhtml')
-rw-r--r--tests/projects/plugins/project/src/web/sample.xhtml46
1 files changed, 46 insertions, 0 deletions
diff --git a/tests/projects/plugins/project/src/web/sample.xhtml b/tests/projects/plugins/project/src/web/sample.xhtml
new file mode 100644
index 00000000000..45a212717b2
--- /dev/null
+++ b/tests/projects/plugins/project/src/web/sample.xhtml
@@ -0,0 +1,46 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml"
+ xmlns:h="http://java.sun.com/jsf/html"
+ xmlns:f="http://java.sun.com/jsf/core">
+
+ <f:metadata>
+ <f:viewParam name="user" value="#{userEdit.user}" converter="#{userConvertor}" />
+ <f:event listener="#{userEdit.preRenderView()}" type="preRenderView"/>
+ </f:metadata>
+
+ <h:head>
+ </h:head>
+
+ <h:body>
+
+ <h:messages />
+
+ <h:form>
+
+ <h:panelGrid columns="2">
+ <f:facet name="header">User</f:facet>
+
+ <h:outputLabel value="Id" rendered="#{!empty userEdit.user.id}" />
+ <h:outputLabel value="#{userEdit.user.id}" rendered="#{!empty userEdit.user.id}" />
+
+ <h:outputLabel for="firstName" value="First name" />
+ <h:inputText id="firstName" value="#{userEdit.user.firstName}" label="First name" />
+
+ <h:outputLabel for="lastName" value="Last name" />
+ <h:inputText id="lastName" value="#{userEdit.user.lastName}" label="Last name" />
+
+ <h:outputLabel for="birthDay" value="Birth day" />
+ <h:inputText id="birthDay" value="#{userEdit.user.birthday}" label="Birth day">
+ <f:convertDateTime pattern="dd-MM-yyyy"/>
+ </h:inputText>
+
+ <h:outputLabel for="email" value="Email" />
+ <h:inputText id="email" value="#{userEdit.user.email}" />
+
+ <h:commandButton action="#{userEdit.saveUser}" value="Submit" />
+ <h:button outcome="index.xhtml" value="Cancel" />
+ </h:panelGrid>
+ </h:form>
+
+ </h:body>
+</html>