A tumblelog CMS built on AJAX, PHP and MySQL.

template_comment_post.htm 1.3KB

123456789101112131415161718192021222324252627282930313233343536
  1. <div class="containerFormComments">
  2. <h3 id="respond">Add your comment</h3>
  3. <form action="{Form_Action}" method="post" name="commentForm" id="commentForm">
  4. <p>
  5. <label for="username">
  6. <small>Name:</small>
  7. </label>
  8. <input name="username" id="username" value="{User_Cookie}" size="22" tabindex="1" type="text" />
  9. </p>
  10. <p>
  11. <label for="email">
  12. <small>E-mail:</small>
  13. </label>
  14. <input name="email" id="email" value="{Email_Cookie}" size="22" tabindex="2" type="text" />
  15. </p>
  16. <p>
  17. <label for="web">
  18. <small>Website:</small>
  19. </label>
  20. <input name="web" id="web" value="{Web_Cookie}" size="22" tabindex="3" type="text" />
  21. </p>
  22. <p>
  23. <textarea name="content" id="content" cols="100" rows="10" tabindex="4"></textarea>
  24. </p>
  25. <p>
  26. <span style="color: rgb(136, 136, 136); margin-bottom: 10px; font-size: 10px;"><a href="http://hobix.com/textile/">Textile</a> syntax is supported.</span>
  27. <p>
  28. <input type="submit" value="Add comment" name="btnAdd" id="btnAdd" tabindex="5" />
  29. </p>
  30. <p>
  31. <input name="id_post" id="id_post" value="{Id_Post}" type="hidden" />
  32. <input name="comment_date" id="comment_date" value="{Date_Added}" type="hidden" />
  33. </p>
  34. </form>
  35. </div>