2002-08-07 18:56:55 +00:00
|
|
|
<?php
|
2008-08-05 22:43:14 +00:00
|
|
|
// This file is part of BOINC.
|
|
|
|
// http://boinc.berkeley.edu
|
|
|
|
// Copyright (C) 2008 University of California
|
|
|
|
//
|
|
|
|
// BOINC is free software; you can redistribute it and/or modify it
|
|
|
|
// under the terms of the GNU Lesser General Public License
|
|
|
|
// as published by the Free Software Foundation,
|
|
|
|
// either version 3 of the License, or (at your option) any later version.
|
|
|
|
//
|
|
|
|
// BOINC 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 Lesser General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Lesser General Public License
|
|
|
|
// along with BOINC. If not, see <http://www.gnu.org/licenses/>.
|
2002-08-07 18:56:55 +00:00
|
|
|
|
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
|
|
|
?>
|