diff options
author | Martin Ashby <martin@ashbysoft.com> | 2022-12-29 22:49:33 +0000 |
---|---|---|
committer | Martin Ashby <martin@ashbysoft.com> | 2022-12-29 22:49:33 +0000 |
commit | 30927637f2ae8af9224eb6daeca25793a0675bca (patch) | |
tree | 9d2acb62368f1757359d6d4e66352fe5e78e9225 /comments/templates/form.html | |
parent | 19da6ec39be9e3caa5b9e2766139684fd7bbe0a0 (diff) | |
download | mfashby.net-30927637f2ae8af9224eb6daeca25793a0675bca.tar.gz mfashby.net-30927637f2ae8af9224eb6daeca25793a0675bca.tar.bz2 mfashby.net-30927637f2ae8af9224eb6daeca25793a0675bca.tar.xz mfashby.net-30927637f2ae8af9224eb6daeca25793a0675bca.zip |
More work on comments
Diffstat (limited to 'comments/templates/form.html')
-rw-r--r-- | comments/templates/form.html | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/comments/templates/form.html b/comments/templates/form.html index 90c065e..09fc81f 100644 --- a/comments/templates/form.html +++ b/comments/templates/form.html @@ -1,8 +1,11 @@ <form action="/api/comments"> <input type="hidden" name="url" value="{{ url }}"><br> + <input type="hidden" name="capcha_id" value="{{ capcha_id }}"><br> <label for="author">Name:</label><br> <input type="text" id="author" name="author"><br> <label for="comment">Comment:</label><br> <input type="text" id="comment" name="lname"> + <label for="capcha">{{ capcha_question }}</label> + <input type="text" id="capcha" name="capcha_answer"><br> <input type="submit" value="Submit"> </form> |