<?xml version="1.0"?>
<xsl:stylesheet version="1.0"
 xmlns="http://www.w3.org/1999/xhtml"
 xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
 xmlns:its="http://www.w3.org/2005/11/its"
 its:version="1.0">
 <xsl:template match="/data">
 <xsl:variable name="Lang" select="Lang"/>
 <xsl:variable name="EMail" select="EMail"/>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="{$Lang}" lang="{$Lang}">
 <head>
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
  <title>Login</title>
 </head>
 <body>
  <p>Login Into Queztal-Systems</p>
  <form method="POST">
   <table border="0" id="table2">
    <tr><td>First, place your pass card in front of the reader to scan your
     <xsl:text its:locNoteRef="http://en.wikipedia.org/wiki/RFID">RFID</xsl:text>.
     When the light turns green, enter your password in the box below, and
     click Submit.</td></tr>
    <tr><td><input type="password" name="pword" size="25"/></td></tr>
   </table>
   <p><input type="submit" value="Submit" name="go"/></p>
  </form>
  <p>If you have difficulties login in, please call
   <xsl:value-of select="PNum" its:locNote="Toll-free phone number"/>,
   or send an email to
   <a href="mailto:{$EMail}"><xsl:value-of select="EMail"/></a>.</p>
 </body>
</html>
</xsl:template>
</xsl:stylesheet>