<?xml version="1.0"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
							  xmlns:msxsl="urn:schemas-microsoft-com:xslt"
							  xmlns:user="mynamespace">
	<xsl:output method="html"/>
	<xsl:template match = "/">
		<html>
		<xsl:for-each select="/root/form_field">
			<xsl:value-of select="@display"/>: <xsl:value-of select="@text"/><br/>
		</xsl:for-each>
		</html>
	</xsl:template>
</xsl:stylesheet>

