<?xml version="1.0" encoding="ISO-8859-1"?> 

<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
	<form action="/client/" method="post">
    <table class="content" width="50%" cellpadding="2" cellspacing="5" border="0">
		<tr><td colspan="2" class="contenttitle">Client Login</td></tr>

		<tr><td colspan="2" class="error">Sorry, Login ID/Password combination invalid.</td></tr>


		<tr><td class="content">Login ID</td>
			<td>
				<input type="text" size="15" name="username">
				<xsl:attribute name="value"><xsl:value-of select="loginid/username"/></xsl:attribute></input>
			</td>
		</tr>

		<tr><td class="content">Password</td>
			<td><input type="password" size="15" name="passwd" /></td>
		</tr>

		<tr>
			<td colspan="2" align="right"><input type="submit" value="Log In" /></td>
		</tr>
    </table>
	</form>
</xsl:template></xsl:stylesheet>
