<?php
/*
* ITMS ValleyData source file version 1.0 May 11, 2001
*
* Delete a pending task the current user has assigned
*
*
* Internet Task Management System: An online system used for recording information about and assigning tasks and processes.
* Copyright (C) 2001 ValleyData Programming Group
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* See file named "gpl.txt" included with source code or
* visit http://www.gnu.org/copyleft/gpl.txt on the internet.
*/
$title="Unassign Task";
include("header.php");
$confirm_html = <<<CONFIRM
<table>
<tr>
<tr>
<td>
<FORM METHOD="POST" ACTION="index.php">
<INPUT TYPE="hidden" name="delete_now" value="$delete_user_name">
<INPUT TYPE="hidden" name="unassign" value="unassign">
<INPUT TYPE="hidden" name="unassign$tid" value="unassign$tid">
<INPUT TYPE="submit" value="Unassign Task">
</FORM>
<FORM METHOD="POST">
<INPUT TYPE="button" value="Cancel" onClick="location='index.php'">
</FORM>
</td>
</tr>
</table>
CONFIRM;
message_box("Are You sure you want to unassign the task: " . $task_name, "warning");
print($confirm_html);
include("footer.php");
?>