blob: 2b5743a26e817ab39a7ad0fd327cbadcb4d939cd [file] [log] [blame]
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<%@ page contentType="text/html;charset=UTF-8"%>
<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
<f:view>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<title>index</title>
</head>
<body>
<h:form>
<h:panelGrid columns="1">
<h:panelGrid columns="2">
<h:outputText value="Please enter your name: "/>
<h:inputText value="#{namebean.name}"/>
</h:panelGrid>
<h:commandButton value="Click Here" action="sayhello"/>
</h:panelGrid>
</h:form>
</body>
</html>
</f:view>