20 lines
701 B
HTML
20 lines
701 B
HTML
<f:view xmlns="http://www.w3c.org/1999/xhtml"
|
|
xmlns:f="http://java.sun.com/jsf/core"
|
|
xmlns:h="http://java.sun.com/jsf/html">
|
|
<h:head>
|
|
<meta charset="utf-8"/>
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"/>
|
|
<title>TO-DO application</title>
|
|
</h:head>
|
|
<h:body>
|
|
<div>
|
|
<p>Welcome in the TO-DO application!</p>
|
|
<p style="height:50px">
|
|
This is a static message rendered from xhtml.
|
|
<h:form>
|
|
<h:commandButton value="Load To-do page!" action="#{jsfController.loadTodoPage}" />
|
|
</h:form>
|
|
</p>
|
|
</div>
|
|
</h:body>
|
|
</f:view> |