<?xml version="1.0" encoding="iso-8859-1"?>
<?xml-stylesheet href="xsltforms/xsltforms.xsl" type="text/xsl"?>
<html xmlns="http://www.w3.org/1999/xhtml"
      xmlns:f="http://www.w3.org/2002/xforms"
      xmlns:ev="http://www.w3.org/2001/xml-events"
      xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<head>
	<title>Enter a date</title>
	<link href="xforms.css" rel="stylesheet" type="text/css" />
        <style type="text/css">
             body { margin: 5em; font-size: 30pt; font-family: sans-serif }
	     .align, label { font-weight: bold}
        </style>
	<f:model>
		<f:instance>
                  <data xmlns="">
		    <when/>
                  </data>
	        </f:instance>
                <f:bind nodeset="when" type="xsd:date"/>
	</f:model>
</head>
<body>
<p>
<f:input ref="when"><f:label>Date</f:label></f:input>
</p>
</body>
</html>
