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.
 
 
 

34 lines
944 B

<?php
if ($_GET['mode'] == 'admin')
require_once('./templates/admin/overall_header.tpl.php');
else
require_once('./templates/overall_header.tpl.php');
?>
<form action="<?php echo $_SERVER['REQUEST_URI']; ?>" method="post">
<div id="content">
<br>
<div class="forum_table">
<div class="row">
<div class="hc1 hc4">Confirm your action</div>
</div>
<div class="row">
<div class="tc1 tc4" style="padding-top: 20px; padding-bottom: 20px">
<?php echo $this->TPL['message']; ?>
</div>
</div>
<div class="row">
<div class="tc1 tc4" style="padding-top: 20px; padding-bottom: 20px">
<input type="hidden" name="confirmed" id="confirmed" value="true">
<input type="submit" value="Yes" style="font-weight: bold">
<input type="submit" name="rejected" value="No">
</div>
</div>
</div>
</div>
</form>
<?php require_once('./templates/overall_footer.tpl.php'); ?>