diff options
author | dev-nicolaos <contact@nicolaos.dev> | 2023-06-29 23:50:48 -0700 |
---|---|---|
committer | dev-nicolaos <contact@nicolaos.dev> | 2023-06-29 23:50:48 -0700 |
commit | 14e0148a92cab8ec23411462d8d7dde8b4f735ac (patch) | |
tree | e85c255856700bee86f7edc915990cfb5c8866cd /views/event.handlebars | |
parent | 0d947c6a5439c01fabd1e9d806f6414df5d7b297 (diff) |
add labels for comment form inputs
Diffstat (limited to 'views/event.handlebars')
-rwxr-xr-x | views/event.handlebars | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/views/event.handlebars b/views/event.handlebars index 4749a45..6694ea2 100755 --- a/views/event.handlebars +++ b/views/event.handlebars @@ -263,9 +263,11 @@ <h5 class="card-header">Discussion</h5> <div class="card-body"> <form id="commentForm" action="/post/comment/{{eventData.id}}/" method="post"> + <label for="commentAuthor">Name</label> <div class="form-group"> <input type="text" class="form-control" id="commentAuthor" name="commentAuthor" placeholder="Your name" data-validation="required length" data-validation-length="1-60"> </div> + <label for="commentContent">Comment</label> <div class="form-group"> <div class="input-group"> <textarea class="form-control" id="commentContent" name="commentContent" style="resize: none;" placeholder="What would you like to say?" data-validation="required length" data-validation-length="1-280"></textarea> |