Skip to content

Commit

Permalink
feat: 评论增加必填标志
Browse files Browse the repository at this point in the history
  • Loading branch information
youranreus committed Sep 21, 2024
1 parent ebf2270 commit f4e36a9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/comments.php
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,8 @@ function threadedComments($comments, $options)
<?php else: ?>
<!-- 要求输入名字、邮箱、网址 -->
<div class="comments-Input">
<input type="text" name="author" class="text" size="35" value="<?php $this->remember('author'); ?>" placeholder="🙌用户名"/>
<input type="text" name="mail" class="text" size="35" value="<?php $this->remember('mail'); ?>" placeholder="📫邮箱"/>
<input type="text" name="author" class="text" size="35" value="<?php $this->remember('author'); ?>" placeholder="🙌用户名*"/>
<input type="text" name="mail" class="text" size="35" value="<?php $this->remember('mail'); ?>" placeholder="📫邮箱*"/>
<input type="text" name="url" class="text" size="35" value="<?php $this->remember('url'); ?>" placeholder="🔗博客链接"/>
<input type="hidden" name="receiveMail" id="receiveMail" value="yes"/>
</div>
Expand Down

0 comments on commit f4e36a9

Please sign in to comment.