authenticator); $teamid = get_int("teamid"); $team = lookup_team($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) { Header("Location: home.php"); } else { error_page("Couldn't join team - please try later."); } } page_tail(); ?>