authenticator); $teamid = post_int("teamid"); $team = BoincTeam::lookup_id($teamid); require_team($team); if ($user->teamid == $team->id) { page_head("Unable to add $user->name"); echo "You are already a member of $team->name."; } else { $success = user_join_team($team, $user); if ($success) { page_head("Joined $team->name"); echo "You have joined id>$team->name. "; } else { error_page("Couldn't join team - please try later."); } } page_tail(); ?>