A new, object-oriented, better vesion of μForum
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
944 B

  1. <?php
  2. if ($_GET['mode'] == 'admin')
  3. require_once('./templates/admin/overall_header.tpl.php');
  4. else
  5. require_once('./templates/overall_header.tpl.php');
  6. ?>
  7. <form action="<?php echo $_SERVER['REQUEST_URI']; ?>" method="post">
  8. <div id="content">
  9. <br>
  10. <div class="forum_table">
  11. <div class="row">
  12. <div class="hc1 hc4">Confirm your action</div>
  13. </div>
  14. <div class="row">
  15. <div class="tc1 tc4" style="padding-top: 20px; padding-bottom: 20px">
  16. <?php echo $this->TPL['message']; ?>
  17. </div>
  18. </div>
  19. <div class="row">
  20. <div class="tc1 tc4" style="padding-top: 20px; padding-bottom: 20px">
  21. <input type="hidden" name="confirmed" id="confirmed" value="true">
  22. <input type="submit" value="Yes" style="font-weight: bold">
  23. <input type="submit" name="rejected" value="No">
  24. </div>
  25. </div>
  26. </div>
  27. </div>
  28. </form>
  29. <?php require_once('./templates/overall_footer.tpl.php'); ?>