Ravi Srinivasan
2018-09-10 aaf094af7ecf98e07e31a231fdab871b25961bd1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?xml version="1.0" encoding="UTF-8"?>
 
<ui:composition xmlns="http://www.w3.org/1999/xhtml"
    xmlns:ui="http://java.sun.com/jsf/facelets"
    xmlns:f="http://java.sun.com/jsf/core"
    xmlns:h="http://java.sun.com/jsf/html"
    template="/WEB-INF/templates/default.xhtml">
    <ui:define name="title">
    Create Queries Web Application
    </ui:define>
    <ui:define name="application_name">
        Create Queries Web Application
    </ui:define>
    <ui:define name="content">
        <h1>Create Queries</h1>
        <br class="clear"/>
        <h:form id="form">
            <br class="clear"/>
            <h1>
              <a href="/create-queries/viewPersons.xhtml">View All Users</a>
              <br/>
              <a href="/create-queries/viewPerson.xhtml">Search Users</a>
            </h1>
        </h:form>
    </ui:define>
</ui:composition>