<html xmlns:wicket="http://wicket.apache.org">
<wicket:head>
    <title>Wicket Examples - guestbook</title>
</wicket:head>
<body>
  <wicket:extend>

  <form wicket:id = "commentForm" id = "commentForm">
    Add your comment here:
    <p>
    <textarea wicket:id = "text">This is a comment</textarea>
    </p>
    <input type="text" wicket:id="comment" class="nospam" onfocus="getElementById('formsubmit').focus();"/>
    <br />
    <input type = "submit" value = "Submit" id="formsubmit"/>
  </form>
  <p/>
  <span wicket:id = "comments" id="comments">
    <p>
        <span wicket:id="date">1/1/2004</span><br />
        <span wicket:id="text">Comment text goes here.</span>
    </p>
  </span>
  <wicket:remove>
    <p>
        1/2/2004<br/>
        More comment text here.
    </p>
  </wicket:remove>
</wicket:extend>
</body>
</html>