diff options
Diffstat (limited to 'src/web/_views/comments.php')
-rw-r--r-- | src/web/_views/comments.php | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/web/_views/comments.php b/src/web/_views/comments.php index bf30ec5..0828753 100644 --- a/src/web/_views/comments.php +++ b/src/web/_views/comments.php @@ -18,24 +18,24 @@ <div class="new"> <h3><?=lang('new_comment_title')?></h3> <form id="new_comment" method="get" action="<?=lang('base_path') . '_comments/post'?>"> - <input + <div><input type="text" name="author" id="author" aria-label="<?=lang('new_comment_author_label')?>" - placeholder="<?=lang('new_comment_author_ph')?>"> - <input + placeholder="<?=lang('new_comment_author_ph')?>"></div> + <div><input type="text" name="content" id="content" aria-label="<?=lang('new_comment_content_label')?>" - placeholder="<?=lang('new_comment_content_ph')?>"> + placeholder="<?=lang('new_comment_content_ph')?>"></div> <input type="hidden" class="hidden" name="ref" value="<?=base64_encode($ref)?>"> - <input + <div><input type="hidden" class="hidden" name="page" |