<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE xsl:stylesheet>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns="http://www.w3.org/1999/xhtml">
<xsl:output  method="html" encoding="iso-8859-1" />
  <xsl:template match="/">
    <html>
      <body bgcolor="#FFFFFF">
        <h2>All Users</h2>
    <table border="1">
    <tr bgcolor="#9acd32">
      <th align="left">Login-ID</th>
      <th align="left">Password</th>
      <th align="left">Operation</th>
    </tr>
    <xsl:for-each select="users/user">
    <tr>
      <td><xsl:value-of select="login"/></td>
      <td><xsl:value-of select="password"/></td>
      <td><a><xsl:attribute name="href"><xsl:apply-templates select="login-url"/></xsl:attribute>delete</a></td>	
    </tr>	
    </xsl:for-each>
    </table>
      </body>
    </html>
  </xsl:template>
</xsl:stylesheet>
 