Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@arthurportas
Created May 8, 2017 21:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save arthurportas/2ea8b32f60ab72ac3804f5874680cafc to your computer and use it in GitHub Desktop.
Save arthurportas/2ea8b32f60ab72ac3804f5874680cafc to your computer and use it in GitHub Desktop.
new-employee.xhtml
<?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">
<head>
<title>::StaffGest:: - new-employee</title>
</head>
<body>
<h:form>
First name:
<h:inputText value="#{employeeBean.firstName}"></h:inputText>
Last name:
<h:inputText value="#{employeeBean.lastName}"></h:inputText>
<h:commandButton value="Submit" action="#{employeeBean.save}"></h:commandButton>
</h:form>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment