<?php
/*
* ConPortal - Pomona College ITS scheduling appplication
* Copyright (C) 2005-2006 Pomona College
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of version 2 of the GNU General Public License
* as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
require_once('standard.php');
if (!isset($_GET['user']) || !intval($_GET['user'])) {
header("Location: " . BASE_URL . "display_users.php");
exit;
}
xhtml_header_privileged('Confirm User Deletion', 'manage_users');
$user = getUserDetails($_GET['user']);
?>
Are you sure you'd like to deactivate the account of <?= $user['name'] ?>?
<br />
<form method='get' action='redirects/perms_delete.php' style='float:left'><div>
<input type='hidden' name='user' value='<?= $_GET['user'] ?>' />
<input type='hidden' name='confirm' value='1' />
<input type='submit' value='Yes' />
</div></form>
<button onclick='javascript:window.location = "<?= BASE_URL ?>display_users.php"'>No</button>
<?php
xhtml_footer();
?>