<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
  <xsl:import href="template.xsl"/>
  <xsl:template match="/page/body">
    <div id="message"></div>
    <form action="/bandname/dispatch.fcgi/Add">
	  <label for="type">Choose: </label>
      <select name="type" id="type">
        <option value="noun">Noun</option>
        <option value="verb">Verb</option>
        <option value="adjective">Adjective</option>
        <option value="number">Number</option>
        <option value="color">Color</option>
        <option value="name">Name</option>
        <option value="place">Place</option>
      </select>
	  <br/>
	  <br/>
      <div class="type noun">
        <label for="wn:noun">A Noun: </label>
        <input type="text" id="wn:noun" name="wn:noun"/>
      </div>
      <div class="type noun">
        <label for="wn:plural">Its Plural: </label>
        <input type="text" id="wn:plural" name="wn:plural"/>
      </div>
      <div class="type verb">
        <label for="wn:verb">A Verb: </label>
        <input type="text" id="wn:verb" name="wn:verb"/>
      </div>
      <div class="type adjective">
        <label for="wn:adjective">An Adjective</label>
        <input type="text" id="wn:adjective" name="wn:adjective"/>
      </div>
      <div class="type number">
        <label for="wn:number">A Number: </label>
        <input type="text" id="wn:number" name="wn:number"/>
      </div>
      <div class="type color">
        <label for="wn:color">A Color: </label>
        <input type="text" id="wn:color" name="wn:color"/>
      </div>
      <div class="type name">
        <label for="wn:firstName">A First Name: </label>
        <input type="text" id="wn:firstName" name="wn:firstName"/>
      </div>
      <div class="type name">
        <label for="wn:lastName">A Last Name: </label>
        <input type="text" id="wn:lastName" name="wn:lastName"/>
      </div>
      <div class="type name">
        <label for="wn:name">The Full Name: </label>
        <input type="text" id="wn:name" name="wn:name"/>
      </div>
      <div class="type place">
        <label for="wn:place">A Place: </label>
        <input type="text" id="wn:place" name="wn:place"/>
      </div>
	  <br/>
      <div>
	    <input type="button" id="add" name="add" value="Add"/>
      </div>
    </form>
  </xsl:template>	  
</xsl:stylesheet>
