diff options
| author | user@node5.net <user@node5.net> | 2025-07-19 15:16:59 +0200 |
|---|---|---|
| committer | user@node5.net <user@node5.net> | 2025-07-19 15:16:59 +0200 |
| commit | f9b719c1cf6a8a92748d0977fce0f3704f74bca3 (patch) | |
| tree | 077537aa54abcc57a0a4163b794c989fb9cd8eb2 | |
| parent | 276ab58962025725070c06f5c5a0acb09405e69a (diff) | |
Comment formula - Fix strict URL requirement, gray out optional
| -rw-r--r-- | blog.node5.net/templates/base.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/blog.node5.net/templates/base.html b/blog.node5.net/templates/base.html index edcdbf9..2fa0b44 100644 --- a/blog.node5.net/templates/base.html +++ b/blog.node5.net/templates/base.html @@ -25,17 +25,17 @@ <h2>Comments</h2> <form action="/comment" method="post"> - <label for="nickname">Nickname (optional)</label><br> + <label for="nickname">Nickname <span class="grey">(optional)</span></label><br> <input type="text" id="nickname" name="nickname"> <br><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"> + for="visitor_url">Your website URL <span class="grey">(optional)</span></label><br> + <input type="text" id="visitor_url" name="visitor_url"> <br><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> + for="contact">Means of contacting you <span class="grey">(optional)</span></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> |
