<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

<xsl:variable name="Space"><xsl:text>&amp;nbsp;</xsl:text></xsl:variable>
<xsl:output method="html"/>

<xsl:template match="/">
	<html>
		<head>
			<link rel="STYLESHEET" href="css/main.css" type="text/css"/>
			<script type="text/javascript">

			</script>
		</head>
		<body>
			<xsl:apply-templates select="register_page"/>
		</body>
	</html>
        
        
</xsl:template>


<!-- ======================================================================= -->
	<xsl:template match="register_page">
		<div class="page_header">Register</div>
		<form name="register_form" method="POST" action="{@reg_form_url}">
			<table class="login">
				<tr>
					<td class="input_label">Username</td>
					<td><input type="text" name="email" id="email" required="Y" placeholder="Email address"/></td>
				</tr>
				<tr>
					<td class="input_label">Password</td>
					<td><input type="password" name="password" required="Y" placeholder="Min 4 characters"/></td>
				</tr>
				<tr>
					<td></td>
					<td>
						<button type="submit" name="action" value="save" tabindex="20">Register</button>
					</td>
				</tr>
			</table>
		</form>
		<p/>
	</xsl:template>


</xsl:stylesheet>