2003-08-08 22:02:19 +00:00
|
|
|
<?php {
|
2002-08-07 18:56:55 +00:00
|
|
|
|
|
|
|
require_once("util.inc");
|
|
|
|
require_once("team.inc");
|
2003-03-19 21:01:32 +00:00
|
|
|
|
2002-08-07 18:56:55 +00:00
|
|
|
db_init();
|
2003-03-19 21:01:32 +00:00
|
|
|
$user = get_logged_in_user();
|
2003-03-21 04:38:55 +00:00
|
|
|
$id = $_GET["id"];
|
2002-11-11 19:40:22 +00:00
|
|
|
|
|
|
|
$query = sprintf(
|
|
|
|
"select * from team where id = %d",
|
|
|
|
$id
|
|
|
|
);
|
|
|
|
$result = mysql_query($query);
|
|
|
|
if ($result) {
|
|
|
|
$team = mysql_fetch_object($result);
|
|
|
|
mysql_free_result($result);
|
|
|
|
}
|
|
|
|
$team_name = $team->name;
|
|
|
|
$team_id = $team->id;
|
|
|
|
page_head("Quit $team_name");
|
|
|
|
echo "<h2>Quit $team_name</h2>";
|
|
|
|
echo "<table width=780>";
|
|
|
|
echo "<tr><td>";
|
|
|
|
echo "<p><b>Please note before quitting a team:</b>";
|
|
|
|
echo "<ul>";
|
|
|
|
echo "<li>By quitting a team you remove your name from the team listing. ";
|
|
|
|
echo "Your credit contribution to the team is also removed";
|
|
|
|
echo "<li>Even if you quit a team, you may rejoin later, ";
|
|
|
|
echo "or join any other team you desire ";
|
|
|
|
echo "<li>Quitting a team does not affect your personal credit ";
|
|
|
|
echo "statistics in any way.";
|
|
|
|
echo "</ul>";
|
2003-08-08 22:02:19 +00:00
|
|
|
|
|
|
|
if ($team->nusers <= 1) {
|
|
|
|
echo "<p><b>You are the only member of this team.</b>";
|
|
|
|
echo "<ul><li>By quitting the team you will disband it.</li></ul>";
|
|
|
|
}
|
|
|
|
|
2002-11-11 19:40:22 +00:00
|
|
|
echo "</p>";
|
|
|
|
echo "<hr>";
|
|
|
|
echo "<form method=post action=team_quit_action.php>";
|
|
|
|
echo "<input type=hidden name=id value=$team_id>";
|
|
|
|
echo "<input type=submit value=\"Quit Team\">";
|
|
|
|
echo "</form>";
|
|
|
|
echo "</td></tr></table>";
|
|
|
|
page_tail();
|
2002-08-07 18:56:55 +00:00
|
|
|
|
2003-08-08 22:02:19 +00:00
|
|
|
} ?>
|