<?php
/******************************************************************************
************** Simple SMS Site Software *********************************
************** SSSSv1.0*****************************************************
************** by (aq) limited http://aql.com *******************************
************** All Rights Reserved ******************************************
************** Please read COPYRIGHT file prior to modification********
********************************************************************************/
session_start();
$_SESSION['delUser'] = $_POST['D1'];
$user = $_SESSION['user'];
$pass = $_SESSION['pass'];
include("inc/header.inc.php");
if ($access == "admin") {
?>
<html>
<p align="center">Are you sure you wish to delete <?echo $_SESSION['delUser'];?>?</p>
<form method="POST" name="sender_form" action="do_delete_user.php">
<p align="center"><input type="submit" value="Delete User" name="B1"></p>
</form>
</html>
<?
}
else {
include("inc/restricted.inc.php");
}
include("inc/footer.inc.php");
?>