comment.html (699B)
1 <!-- This work is in the public domain. See COPYING file for details. --> 2 3 <br> 4 <h2>Add a comment</h2> 5 <form> 6 <fieldset> 7 <p><b>NOTE: By commenting, you agree to release the comment under 8 <a href="https://creativecommons.org/publicdomain/zero/1.0/">CC0 1.0</a>. 9 </b></p> 10 <label for="name">Name (optional):</label><br> 11 <input type="text" name="name" id="name"><br><br> 12 <label for="email">Email (optional):</label><br> 13 <input type="email" name="email" id="email" size="30"><br><br> 14 <label for="comment">Comment:</label><br> 15 <textarea name="body" id="body" rows="8" required></textarea><br><br> 16 <input type="submit" value="Submit"> 17 </fieldset> 18 </form> 19 <br>