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
2014-04-18 06:31:51 +00:00
// Copyright (C) 2014 University of California
2008-08-05 22:43:14 +00:00
//
// 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
2014-04-18 06:31:51 +00:00
if ( DISABLE_TEAMS ) error_page ( " Teams are disabled " );
2011-02-09 22:11:34 +00:00
check_get_args ( array ());
2007-10-26 21:14:35 +00:00
$user = get_logged_in_user ();
2002-08-07 18:56:55 +00:00
2008-12-13 18:21:04 +00:00
page_head ( tra ( " 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 );
2008-12-13 18:21:04 +00:00
echo tra ( " You belong to %1. You must %2quit this team%3 before creating a new one. " , " <a href= \" team_display.php?teamid= " . $team -> id . " \" > " . $team -> name . " </a> " , " <a href= \" team_quit_form.php \" > " , " </a> " );
2004-06-07 03:34:07 +00:00
} else {
2008-12-13 18:21:04 +00:00
team_edit_form ( null , tra ( " Create a team " ), " team_create_action.php " );
2004-06-07 03:34:07 +00:00
}
2003-03-19 21:01:32 +00:00
page_tail ();
2002-08-30 00:10:40 +00:00
?>