<?xml version="1.0" encoding="UTF-8"?>
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:ev="http://www.w3.org/2001/xml-events"
      xmlns:xforms="http://www.w3.org/2002/xforms">
    <head>
        <xforms:model>
            <xforms:instance>
                <Template xmlns="">
                    <Letter>
                        <Advisor_EmployeeID></Advisor_EmployeeID>
                        <Client_ID></Client_ID>
                    </Letter>
                </Template>
            </xforms:instance>
            <xforms:submission id="form1" method="form-data-post" action="http://localhost:8080/dls/forms/letter" ref="/Template"/>
        </xforms:model>
    </head>
    <body>
        <xforms:input ref="Client_ID">
            <xforms:label>Client ID</xforms:label>
        </xforms:input>
        <br/>

        <xforms:input ref="Advisor_EmployeeID">
            <xforms:label>Advisor Employe ID</xforms:label>
        </xforms:input>
        <br/>
        <br/>

        <xforms:submit submission="form1">
            <xforms:label>Submit</xforms:label>
        </xforms:submit>
    </body>
</html>

