Просмотр файла orblog-master/private/templates/comment_form.php

Размер файла: 1.07Kb
  1. <?php
  2. /*-----------------------------------------------------------------------------
  3. orblog - Simple blog for hidden networks.
  4. Version: 0.1
  5. GitLab: https://github.com/neuberon/orblog/
  6. Copyright: neuberon@disroot.org 2020
  7. License: http://www.apache.org/licenses/LICENSE-2.0
  8.  
  9. -----------------------------------------------------------------------------*/
  10. ?>
  11. <h1 id="add"><?=$_LANG['add_comment']?></h1>
  12. <?php if($_TPL['error']) { ?>
  13. <div class="error">
  14. <?=$_TPL['error']?>
  15. </div>
  16. <?php } ?>
  17. <form action="index.php?view=post&id=<?=$_TPL['id']?>&action=add_comment" method="post">
  18. <textarea name="text" class="editor" rows="4" placeholder="<?=$_LANG['comment_text']?>"></textarea>
  19. <img src="captcha.php" alt="captcha" class="captcha"><br>
  20. <input type="text" name="captcha" class="editor" placeholder="<?=$_LANG['input_captcha']?>">
  21. <input type="submit" class="button" value="<?=$_LANG['submit']?>">
  22. </form>