2002-08-07 18:56:55 +00:00
|
|
|
<?php
|
|
|
|
|
2004-02-02 23:34:39 +00:00
|
|
|
require_once("../inc/db.inc");
|
|
|
|
require_once("../inc/util.inc");
|
|
|
|
require_once("../inc/team.inc");
|
2002-12-04 19:14:00 +00:00
|
|
|
|
2002-08-07 18:56:55 +00:00
|
|
|
db_init();
|
|
|
|
|
2004-06-07 03:34:07 +00:00
|
|
|
$user = get_logged_in_user(true);
|
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) {
|
|
|
|
echo "You already belong to a team.
|
|
|
|
You must quit your current team before creating a new one.
|
|
|
|
";
|
|
|
|
} 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
|
|
|
?>
|