<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
 <xsl:output method="html" encoding="UTF-8" indent="yes" />
 <xsl:template match="/">
  <html>
  <head>
    <title>Limulus Research Kitchens - Who knows what is to come?</title>
    <link rel="stylesheet" type="text/css" href="/css/index.css" media="screen" />
    <link rel="stylesheet" type="text/css" href="/bandname/styles/style.css" media="screen" />
    </head>
    <body bgcolor="#FFFFFF" text="#000000">
      <h1 class="comingsoon">Limulus Research Kitchens</h1>
      <h2>Site Design | Custom Programming | Unique Vision</h2>
      <img src="/pix/limuli.jpg" alt="Limulus"/>
      <img src="/pix/research.jpg" alt="Research"/>
      <img src="/pix/kitchen.jpg" alt="Kitchens"/> <br/>
      <img src="/pix/limrk.png" align="right" alt="whammy logo"/>
	  <xsl:apply-templates select="/bandname"/>
    </body>
  </html>
 </xsl:template>
 <xsl:template match="/bandname">
 	<div class="bandname"><xsl:value-of select="node()"/></div>
	<form method="post" action="/bandname/dispatch.fcgi/Rate">
	<xsl:apply-templates select="./pattern"/>
	<xsl:apply-templates select="./word"/>
	<div><select name="rating">
	<option>0</option>
	<option>1</option>
	<option>2</option>
	<option>3</option>
	<option>4</option>
	<option selected="selected">5</option>
	<option>6</option>
	<option>7</option>
	<option>8</option>
	<option>9</option>
	</select>
	<input type="submit" name="submit" value="Rate this name, see another" /></div>
	</form>
 </xsl:template>
 <xsl:template match="/bandname/pattern">
   <input type="hidden" name="pattern" value="{node()}"/>
 </xsl:template>
 <xsl:template match="/bandname/word">
   <input type="hidden" name="word" value="{node()}"/>
 </xsl:template>
</xsl:stylesheet>
