00001 <?php
00002 # This file is part of the Savane project
00003 # <http://gna.org/projects/savane/>
00004 #
00005 # $Id: confirm.php 5429 2006-02-17 22:59:20Z toddy $
00006 #
00007 # Copyright 2001 (c) Jaime Villate <villate@gnu.org>
00008 #
00009 # The Savane project is free software; you can redistribute it and/or
00010 # modify it under the terms of the GNU General Public License
00011 # as published by the Free Software Foundation; either version 2
00012 # of the License, or (at your option) any later version.
00013 #
00014 # The Savane project is distributed in the hope that it will be useful,
00015 # but WITHOUT ANY WARRANTY; without even the implied warranty of
00016 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
00017 # GNU General Public License for more details.
00018 #
00019 # You should have received a copy of the GNU General Public License
00020 # along with the Savane project; if not, write to the Free Software
00021 # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
00022
00023 require "../include/pre.php";
00024
00025 $HTML->header(array('title'=>'Confirmation to leave project '. $group_name));
00026 ?>
00027
00028 <table width="100%" cellpadding="5" cellspacing="0" border="0">
00029 <tr><td width="65%" valing="top">
00030 <p>
00031 Are you sure you want to be taken out from the list of developers
00032 of project <?php echo $group_name; ?>?.
00033 </p>
00034 </td>
00035 </tr>
00036 <tr><td width="65%" valing="top">
00037 <table cellpadding="5" cellspacing="5" border="0">
00038 <tr><td>
00039
00040 <!-- Yes, remove user from project -->
00041 <?php
00042
00043 echo '<form action="rmproject.php" method="get">';
00044 echo '<input type="hidden" name="group_id" value="'.$group_id.'" />';
00045 ?>
00046 <input type="submit" value="Yes" />
00047 </form>
00048 </td><td>
00049
00050 <!-- No, don't remove user from project -->
00051 <form action="index.php" method="get">
00052 <input type="submit" value="No!" />
00053 </form>
00054
00055 </td></tr></table>
00056 </td></tr></table>
00057
00058 <?php
00059
00060 $HTML->footer(array());
00061
00062 ?>
00063