form.html (518B)
1 <form action="/api/comment" method="post"> 2 <input type="hidden" name="url" value="{{url}}"><br> 3 <input type="hidden" name="capcha_id" value="{{capcha_id}}"><br> 4 <label for="author">Name:</label><br> 5 <input type="text" id="author" name="author"><br> 6 <label for="comment">Comment:</label><br> 7 <input type="text" id="comment" name="comment"><br> 8 <label for="capcha">{{ capcha_question }}</label><br> 9 <input type="text" id="capcha" name="capcha_answer"><br> 10 <input type="submit" value="Submit"> 11 </form>