diff options
author | Freya Murphy <freya@freyacat.org> | 2024-09-27 15:05:35 -0400 |
---|---|---|
committer | Freya Murphy <freya@freyacat.org> | 2024-09-27 15:05:35 -0400 |
commit | cc2c4de595bc3c4f7424d30342d74a5974fdefe0 (patch) | |
tree | 38a1daec46b11484c12eb6f08128dd05619b1e10 /src/web/_views/comments.php | |
parent | ie5 (diff) | |
download | website-cc2c4de595bc3c4f7424d30342d74a5974fdefe0.tar.gz website-cc2c4de595bc3c4f7424d30342d74a5974fdefe0.tar.bz2 website-cc2c4de595bc3c4f7424d30342d74a5974fdefe0.zip |
ie4
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" |