<?xml-stylesheet href="../forms/xsltforms/xsltforms.xsl" type="text/xsl"?>
<?xsltforms-options debug="no"?>
<html xmlns="http://www.w3.org/1999/xhtml"
      xmlns:h="http://www.w3.org/1999/xhtml"
      xmlns:ev="http://www.w3.org/2001/xml-events"
      xmlns:xsd="http://www.w3.org/2001/XMLSchema"
>
<head>
   <title>Shop</title>
   <style type="text/css">
      body { font-family: sans-serif}
      .block {display: block}
   </style> 
   <model xmlns="http://www.w3.org/2002/xforms">
      <instance src="shop.xhtml"/>
      <submission id="ok" action="shop.xhtml"
		  method="put"/>
   </model>
</head>
<body>
   <group  xmlns="http://www.w3.org/2002/xforms">
      <select1 class="block" ref="/h:html/h:body/h:p/h:strong">
	 <label>The shop is now:</label>
	 <item><label>Open</label><value>open</value></item>
	 <item><label>Closed</label><value>closed</value></item>
      </select1>
      <submit submission="ok"><label>OK</label></submit>
   </group>
</body>
</html>
