boinc/html/user/team_quit_form.php

50 lines
1.4 KiB
PHP

<?php {
require_once("util.inc");
require_once("team.inc");
db_init();
$user = get_logged_in_user();
$id = $_GET["id"];
$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>";
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>";
}
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();
} ?>