diff options
Diffstat (limited to 'views/partials/comments.ejs')
| -rw-r--r-- | views/partials/comments.ejs | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/views/partials/comments.ejs b/views/partials/comments.ejs index 80f1b3c..14bb9bf 100644 --- a/views/partials/comments.ejs +++ b/views/partials/comments.ejs @@ -26,9 +26,12 @@ <tr> <td> <form> - <textarea name="comment" placeholder="Enter your comment"></textarea><br> - <input type="file" multiple> - <input type="submit" value="POST" /> + <textarea required name="comment" placeholder="Enter your comment"></textarea> + <div class="inputs"> + <input name="files" type="file" multiple> + <input type="submit" value="POST" /> + </div> + <div class='errors'></div> </form> </td> </tr> |
