﻿<?xml version="1.0" encoding="utf-8" ?>
<xsl:stylesheet
	version="1.0"
	xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
	xmlns:msxsl="urn:schemas-microsoft-com:xslt"
	exclude-result-prefixes="msxsl">

  	<xsl:output method="html" indent="yes" version="4.0" />
  	<xsl:output omit-xml-declaration="yes" />


  	<xsl:template match="NewDataSet">
  		<xsl:apply-templates select="*[position() = 1]" mode='main' />
  	</xsl:template>

	<xsl:template match='*' mode="main">
		<div id="laatstelogin-user">
		</div>
	</xsl:template>

</xsl:stylesheet>