diff options
| author | user <user@node5.net> | 2024-03-09 11:50:24 +0100 |
|---|---|---|
| committer | user <user@node5.net> | 2024-03-09 11:50:24 +0100 |
| commit | d1f51eb4f145d5812e14193ff7d0dd2605ddd74f (patch) | |
| tree | c54238e1e1032b93df0ae358c3dbf9de4d8a70cf | |
| parent | e392430206e6795eceabb6cd7efedde2108cd84b (diff) | |
comments - add explanation text for user
| -rw-r--r-- | blog.node5.net/templates/base.html | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/blog.node5.net/templates/base.html b/blog.node5.net/templates/base.html index 026d7ec..79fad6e 100644 --- a/blog.node5.net/templates/base.html +++ b/blog.node5.net/templates/base.html @@ -29,28 +29,30 @@ <input type="text" id="nickname" name="nickname"> <br><br> - <label for="visitor_url">Your website URL (optional)</label><br> + <label title="If you have a blog too, leave the url here to show it off" + for="visitor_url">Your website URL (optional)</label><br> <input type="url" id="visitor_url" name="visitor_url"> <br><br> - <label for="contact">Means of contacting you (optional)</label><br> + <label title="If you wish for me to be able to contact you, leave any means of contacting you here." + for="contact">Means of contacting you (optional)</label><br> <input type="text" id="contact" name="contact"> <label for="show_contact">Show publicly</label> <input type="checkbox" id="show_contact" name="show_contact" checked> <br><br> <label for="comment">Comment, </label> - <label for="public">Show publicly (entire comment)</label> + <label title="Or just post it to the person behind this website" for="public">Show publicly (entire comment)</label> <input type="checkbox" id="public" name="public" checked><br> <textarea class="width-100" rows="4" id="comment" required name="comment" id="comment"></textarea><br><br> - <input type="submit" value="Post comment" /> + <input type="submit" value="Post comment" /> <small>(Will await approval before becoming public)</small> </form> <br> {% if comments|length > 0 %} <h3> ID <span class="dark-grey">|</span> Nickname <span class="dark-grey">|</span> - Visitor website URL<span class="dark-grey">|</span> + <span title="URL of the website the commenter claims to be from">Visitor website URL</span><span class="dark-grey">|</span> Means of contact <span class="dark-grey">|</span> Created at </h3> |
