diff options
author | FChannel <=> | 2021-01-28 15:17:22 -0800 |
---|---|---|
committer | FChannel <=> | 2021-01-28 15:17:22 -0800 |
commit | 7985199b37c4e497bb9b245613d3eeb09c98cadb (patch) | |
tree | 5ddf70177dcb5c56fa34409cf3806eaa699ef5a9 /static/bottom.html | |
parent | 6dc1c48518a4f458412347ca5c73eb7846229a0d (diff) |
max length for input fields
Diffstat (limited to 'static/bottom.html')
-rw-r--r-- | static/bottom.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/static/bottom.html b/static/bottom.html index 25339b5..c058b14 100644 --- a/static/bottom.html +++ b/static/bottom.html @@ -2,8 +2,8 @@ <div id="reply-box" class="popup-box" style="display: none; "> <div id="reply-header" style="display: inline-block; width: 370px; z-index: 0; cursor: move;"></div><div id="reply-close" style="display: inline-block; float: right;"><a href="javascript:closeReply()">[X]</a></div> <form id="reply-post" action="/post" method="post" enctype="multipart/form-data"> - <input id="reply-name" name="name" size="43" type="text" placeholder="Name"> - <input id="reply-options" name="options" size="43" type="text" placeholder="Options"> + <input id="reply-name" name="name" size="43" type="text" placeholder="Name" maxlength="100"> + <input id="reply-options" name="options" size="43" type="text" placeholder="Options" maxlength="100"> <textarea id="reply-comment" name="comment" rows="12" cols="54" style="width: 396px;" maxlength="2000"></textarea> <input id="reply-file" name="file" type="file"> <input id="reply-submit" type="submit" value="Reply" style="float: right;"> |