blob: a3b88d9379ffd349814b0aeb4fb20aa1285e6b73 [file] [log] [blame]
#set( $symbol_pound = '#' )
#set( $symbol_dollar = '$' )
#set( $symbol_escape = '\' )
<?xml version="1.0" encoding="UTF-8"?>
<!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">
<h:head>
<title>Hello World</title>
</h:head>
<h:body>
<h:outputStylesheet name="style.css" library="css"/>
<div id="container">
<h1>MyFaces Hello World</h1>
<h:form id="mainForm">
<h:panelGrid columns="2">
<h:outputLabel for="name" value="Please enter your name"/>
<h:inputText id="name" value="${symbol_pound}{helloWorld.name}" required="true"/>
<h:commandButton value="Press me" action="${symbol_pound}{helloWorld.send}"/>
<h:messages showDetail="true" showSummary="false"/>
</h:panelGrid>
</h:form>
</div>
</h:body>
</html>