2002-08-07 18:56:55 +00:00
|
|
|
<?php
|
|
|
|
|
2007-11-18 04:10:37 +00:00
|
|
|
require_once("../inc/boinc_db.inc");
|
2004-02-02 23:34:39 +00:00
|
|
|
require_once("../inc/util.inc");
|
|
|
|
require_once("../inc/team.inc");
|
2002-12-04 19:14:00 +00:00
|
|
|
|
2007-10-26 21:14:35 +00:00
|
|
|
$user = get_logged_in_user();
|
2002-08-07 18:56:55 +00:00
|
|
|
|
2003-03-19 21:01:32 +00:00
|
|
|
page_head("Create a team");
|
2004-06-07 03:34:07 +00:00
|
|
|
if ($user->teamid) {
|
2007-11-18 04:10:37 +00:00
|
|
|
$team = BoincTeam::lookup_id($user->teamid);
|
|
|
|
echo "You belong to
|
|
|
|
<a href=team_display.php?teamid=$team->id>$team->name</a>.
|
|
|
|
You must <a href=team_quit_form.php>quit this team</a> before creating a new one.
|
2004-06-07 03:34:07 +00:00
|
|
|
";
|
|
|
|
} else {
|
|
|
|
team_edit_form(null, "Create team", "team_create_action.php");
|
|
|
|
}
|
2003-03-19 21:01:32 +00:00
|
|
|
page_tail();
|
2002-08-30 00:10:40 +00:00
|
|
|
?>
|