> ## Documentation Index
> Fetch the complete documentation index at: https://docs.box.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Getting Started: Box User Basics

export const CarouselItem = ({children}) => {
  return <>{children}</>;
};

export const CarouselCard = ({img, video, title, link}) => {
  const [isPlaying, setIsPlaying] = useState(false);
  const Wrapper = link && !video ? "a" : "div";
  const wrapperProps = link && !video ? {
    href: link,
    rel: "noreferrer",
    target: "_blank"
  } : {};
  const autoplayVideo = (() => {
    if (!video) {
      return "";
    }
    try {
      const url = new URL(video);
      url.searchParams.set("autoplay", "true");
      return url.href;
    } catch {
      return video;
    }
  })();
  return <Wrapper className="carousel-card-link block group no-underline !text-inherit" {...wrapperProps}>
      <div className="bg-white dark:bg-[#0b0b0b] rounded-2xl overflow-hidden border border-gray-200 dark:border-gray-800 shadow-sm transition-shadow hover:shadow-md h-[280px] flex flex-col">
        <div className="h-[160px] w-full bg-gray-100 dark:bg-gray-800 relative overflow-hidden rounded-t-2xl rounded-b-none">
          {video && (isPlaying || !img) ? <iframe src={isPlaying ? autoplayVideo : video} title={title} className="w-full h-full" allowFullScreen allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" /> : img ? video ? <button type="button" aria-label={`Play ${title}`} className="carousel-card-playgroup relative h-full w-full cursor-pointer" onClick={() => setIsPlaying(true)}>
                <img src={img} alt={title} className="w-full h-full object-cover" />
                <span className="absolute inset-0 bg-black/20 transition-colors group-hover:bg-black/30" aria-hidden="true" />
                <span className="absolute inset-0 flex items-center justify-center" aria-hidden="true">
                  <span className="flex h-14 w-14 items-center justify-center rounded-full bg-white/95 text-[#0061D5] text-xl shadow-lg">
                    ▶
                  </span>
                </span>
              </button> : <img src={img} alt={title} style={{
    pointerEvents: "none"
  }} className="w-full h-full object-cover" /> : null}
        </div>
        <div className="flex flex-col flex-1">
          <h3 className="px-6 pt-3 text-lg text-[20px] font-bold text-gray-900 dark:text-white line-clamp-3">{title}</h3>
        </div>
      </div>
    </Wrapper>;
};

export const Carousel = ({children, title = "Education", columns = 3}) => {
  const items = Array.isArray(children) ? children : [children];
  const tabs = items.map(child => ({
    title: child.props.title,
    icon: child.props.icon,
    content: child.props.children,
    allHref: child.props.allHref,
    allText: child.props.allText || "See all courses"
  }));
  const gridClassName = columns <= 1 ? "grid grid-cols-1 gap-x-5 gap-y-8" : columns === 2 ? "grid grid-cols-1 sm:grid-cols-2 gap-x-5 gap-y-8" : "grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-x-5 gap-y-8";
  const [activeTab, setActiveTab] = useState(0);
  const tabsRef = useRef([]);
  const [indicatorStyle, setIndicatorStyle] = useState({
    left: 0,
    width: 0
  });
  useEffect(() => {
    const activeButton = tabsRef.current[activeTab];
    if (activeButton) {
      const parent = activeButton.parentElement;
      const parentRect = parent.getBoundingClientRect();
      const btnRect = activeButton.getBoundingClientRect();
      setIndicatorStyle({
        left: btnRect.left - parentRect.left,
        width: btnRect.width
      });
    }
  }, [activeTab]);
  const activeContent = Array.isArray(tabs[activeTab].content) ? tabs[activeTab].content : [tabs[activeTab].content];
  return <div className="w-full py-8 md:py-12 flex flex-col items-center">
      {}
      {title && <h1 className="mb-[32px] text-2xl md:text-[36px] font-semibold text-gray-900 dark:text-white text-center">
          {title}
        </h1>}

      {}
      {tabs.length > 1 && <div className="relative flex p-1 bg-[#F6F7F9] dark:bg-black border border-[#E2E5E8] dark:border-gray-700 rounded-full mb-[48px] md:mb-12 mx-4 h-[54px] items-center gap-2">
          {}
          <div className="absolute top-1 bottom-1 rounded-full bg-white dark:bg-gray-700 shadow-sm transition-all duration-300 ease-in-out" style={{
    left: indicatorStyle.left,
    width: indicatorStyle.width
  }} />
          {tabs.map((tab, idx) => <button key={idx} ref={el => tabsRef.current[idx] = el} onClick={() => setActiveTab(idx)} className={`relative z-10 flex items-center gap-2 px-4 md:px-6 py-2 rounded-full text-xs md:text-sm font-medium transition-colors duration-300 ${activeTab === idx ? "text-gray-900 dark:text-white" : "text-gray-500 dark:text-gray-400 hover:text-gray-700 dark:hover:text-gray-200"}`}>
              {tab.icon && <Icon icon={tab.icon} size={16} color={activeTab === idx ? "#2563eb" : "#9ca1ab"} />}
              {tab.title}
            </button>)}
        </div>}

      {}
      <div className="w-full max-w-[940px] mx-auto px-4">
        <div className={gridClassName}>
          {activeContent.map((card, idx) => <div key={idx}>{card}</div>)}
        </div>
      </div>

      {}
      {tabs[activeTab].allHref && <>
          <style dangerouslySetInnerHTML={{
    __html: `
.carousel-see-all {
  display: inline-flex !important;
  justify-content: center !important;
  align-items: center !important;
  width: 209px !important;
  height: 48px !important;
  background-color: #FFFFFF !important;
  border: 1px solid #F0F1F2 !important;
  border-radius: 9999px !important;
  padding-left: 20px !important;
  padding-right: 20px !important;
  gap: 8px !important;
  text-decoration: none !important;
  color: #0061D5 !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  transition: all 0.2s ease !important;
  box-shadow: none !important;
  margin-top: 2rem !important;
}
.carousel-see-all:hover {
  border-color: #E5E7EB !important;
  box-shadow: none !important;
}
.carousel-see-all::after {
  content: "";
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  background-color: #0061D5;
  -webkit-mask-image: url("https://d3gk2c5xim1je2.cloudfront.net/v7.1.0/light/circle-arrow-right.svg");
  mask-image: url("https://d3gk2c5xim1je2.cloudfront.net/v7.1.0/light/circle-arrow-right.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}
          `
  }} />
          <a href={tabs[activeTab].allHref} className="carousel-see-all">
            {tabs[activeTab].allText}
          </a>
        </>}
    </div>;
};

<div className="article_labels_list" style={{display: 'none'}} dangerouslySetInnerHTML={{__html: "End User , Overview , Article , New , Product Utilization"}} />

Welcome to Box! Want to get up and running fast? Follow the 5 steps below to learn how to log in to Box, create a workspace, and share content with your colleagues.

[Step 1: Logging into Box](#step-1-logging-into-box)

[Step 2: Navigating the Files page](#step-2-navigating-the-files-page)

[Step 3: Creating a new workspace](#step-3-creating-a-new-workspace)

[Step 4: Sharing content with others](#step-4-sharing-content-with-others)

[Step 5: Staying organized](#step-5-staying-organized)

<h2 id="step-1-logging-into-box">
  Step 1: Logging into Box
</h2>

First thing's first. Here’s how to log in:

1\. Go to **app.box.com/login**

2\. Enter your email/username

3\. Enter your password. Forgot your password? No worries: Just click the Reset Password link.

4\. Click **Log In**

If your administrator has enabled or required SSO for your organization, you can use your company credentials to log in to Box.

<h2 id="step-2-navigating-the-files-page">
  Step 2: Navigating the Files page
</h2>

After logging in, you’ll land on the Box **Files** page. The **Files** page will contain all of the folders and files you have access to.

#### Understanding folder icons

Folder icons differ based on folder owner and collaboration status.

**Yellow folders with no icon** are personal folders, owned by you.

**Blue folders with a person icon** are collaborated folders, owned by someone within your enterprise.

**Gray folders with a globe icon** are external collaborated folders, owned by someone outside of your enterprise.

#### Searching for files or folders

If you’re looking for a certain file – or even a certain word or phrase within a file – jump right to it with the **Search** tool.

Just pop your query into the search bar at the top of your page. Box will search the titles of your files and folders as well as the body of your documents. Receive too many results? Simply apply some filters. You can sort by folder, file type, date, content type, and owner.

<Frame>
  <iframe className="w-full aspect-video rounded-xl" src="https://players.brightcove.net/6291496955001/experience_6508a8da6b9b46d53154f4a0/index.html" title="Video player" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowFullScreen />
</Frame>

<h2 id="step-3-creating-a-new-workspace">
  Step 3: Creating a new workspace
</h2>

Let’s learn how to create a new folder on Box, upload content, and share that content with your colleagues.

#### Creating a new folder

1\. Click the **New** button in the upper-right corner of the page.

2\. Choose what you would like to create.

You can create a new Folder, Bookmark (to any URL), Box Note, Microsoft Office file, or Google document. The options shown here may differ based on the settings you or your account admin have enabled.

3\. A pop-up window will appear prompting you to enter the name of your new file or folder. If you are creating a new folder, you'll also be prompted to invite 'collaborators' to the folder. If you do not invite any collaborators, the folder will remain private.

4\. Click 'Create' to complete the process.

#### Uploading a file

While browsing all files and folders in Box, uploading a new file or folder is straightforward:

1\. In the **Files** section, click **New +** button in the upper-right corner.

2\. Select **File Upload** or **Folder Upload**, depending on what you'd like to upload.

3\. Select the file(s) or folder you'd like to upload.

You can select multiple files for upload by holding the Command or Control key (Mac or Windows, respectively) while selecting files. However, you can only select one folder at a time for upload.

4\. Click Open or Upload.

<h2 id="step-4-sharing-content-with-others">
  Step 4: Sharing content with others
</h2>

With Box, you have two primary ways to share content with colleagues and other associates:

by **inviting existing Box users to folders**, or

by **sending shared links**.

#### Adding collaborators to a file or folder on Box

A collaborator is someone you invite into a file or folder. When you add someone as a collaborator to a file or folder, the item appears in their **Files** page.

Permission levels on Box follow a "waterfall" design in which individuals have access only to the folder they are invited into and any subfolders beneath it.  You can also be invited to individual files. For more information on folder permissions and permission levels, click [here](/en/box-fundamentals/for-users/collaborating/collaborating-by-inviting-others).

To invite someone to collaborate in a file or folder:

1\. Open the **Share** window.

To do this, in your Box files view, hover over the row of the file or folder you wish to share. On the right, click **Share**. The Share window opens.

2\. In the **Share** window, under **Invite People**, click **Add names or email addresses**.

Type a collaborator's name or email address.

As you type, Box anticipates your intended recipient and lists corresponding email addresses.  You can select the recipient you want, or continue typing the full email address. When typing full email addresses, separate recipients by a horizontal space.

3\. Click the **Invite as** drop-down menu. Box displays a list of roles. Click the role you wish to assign to the collaborator.

4\. (Optional) In the **Message** field, type a message of up to 750 characters for the collaborator.

5\. Click **Send**.

<Frame>
  <iframe className="w-full aspect-video rounded-xl" src="https://players.brightcove.net/6291496955001/experience_6508a94aae9532582d6c4cf9/index.html" title="Video player" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowFullScreen />
</Frame>

#### Sending a shared link to content on Box

Shared links enable you to quickly copy and share hyperlinks to content stored in Box with your coworkers and friends – both inside and outside the company. Sending someone a shared link to a file or folder is a way to work together with that person around shared content.

Customizable permission levels, expiration dates, and optional password-protection make Box shared links a secure, simple way to share important content.

Creating a link to share:

1\. In your Box files view, hover your cursor over the row of the file or folder you wish to share.

2\. On the right, click (Create and) **Copy Shared Link** ().  The **Shared Link** window opens.

3\. When you create a shared link, you have these access permissions from which to choose:

**People with the link**:  Anyone with the link can access the item and no Box account is required. For extra security, you can also set a password or expiration for the link, as well as restrict download and/or preview access for link viewers.

**People in your company**:  Only people who: 1) are managed on a Box account (Starter and above); (2) have an email address that matches a domain registered with Box for the account that created the link, can access the link. For example, if acme.com is a registered domain on your account, all managed account members with an email address ending in acme.com can access this type of link. People who do not match a domain listed on your account cannot access the link, even if they are managed members on your account.

**Invited people only**: Only people invited to the folder or file can access the content. Collaborators already have access to their content, but can easily direct one another to a specific file or folder using the shared link.

4\. When you create a shared link, you can select the actions that the shared link recipients can take. The actions you can choose depend on what your administrator allows, but can include any of:

**Can edit**:

The people with access to the link can:

Edit, annotate, and comment on the file, or the files in the shared folder, or the Box Note

View and download the file, the files in the folder, or the Box Note

Copy the file or folder to a destination in their Box account

**Can view and download**:

The people with access to the link:

Can view and download the file, the files in the folder, or the Box Note

Can copy the file or folder to a destination in their Box account

Cannot edit within Box

**Can view only**:

The people with access to the link can only view the file, the files in the folder, or the Box note, within Box.

5\. After choosing your shared link settings, you can copy and paste the link into the app of your choice -- email, messaging, and so on -- to share your content.

<Frame>
  <iframe className="w-full aspect-video rounded-xl" src="https://players.brightcove.net/6291496955001/experience_6508aa25ae953207616c4d27/index.html" title="Video player" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowFullScreen />
</Frame>

<h2 id="step-5-staying-organized">
  Step 5: Staying organized
</h2>

#### Collections and Favorites

Box Collections help you navigate to your most-used files and folders quickly.

Box Collections enables you to create and name private collections of content in your Box account, where you can organize files and folders that you own or share.  And although the content may be shared, your collections are not shared and are visible only to you. Box lists all your collections, along with your favorites, in the left sidebar, below **My Collections**.

You can also create new collections. In the left sidebar, beside My Collections click **+**.

#### Recents

Recents help you go right back to where you left off. On this page, you’ll see what files and folder have been recently updated in your Box account. To view recent updates click **Recents** in the left side bar.

<Frame>
  <iframe className="w-full aspect-video rounded-xl" src="https://players.brightcove.net/6291496955001/experience_6508aa6fae953211d66c4d3e/index.html" title="Video player" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowFullScreen />
</Frame>

## Ready to keep learning?

<Carousel title="Grow your skills with more quick videos" columns={2}>
  <CarouselItem title="Quick videos">
    <CarouselCard img="https://mintcdn.com/product-docs/GS2O48pS2WaD6nkd/images/box-fundamentals/image.jpg?fit=max&auto=format&n=GS2O48pS2WaD6nkd&q=85&s=09b13ad7116bff9f8604d9f1a6e9e6b4" video="https://players.brightcove.net/6291496955001/default_default/index.html?videoId=6323983489112" title="Work on the go with Box Mobile" width="1280" height="720" data-path="images/box-fundamentals/image.jpg" />

    <CarouselCard img="https://mintcdn.com/product-docs/GS2O48pS2WaD6nkd/images/box-fundamentals/image-1.jpg?fit=max&auto=format&n=GS2O48pS2WaD6nkd&q=85&s=59d84f1ba9a78f76b4d70ee913b60057" video="https://players.brightcove.net/6291496955001/default_default/index.html?videoId=6325459450112" title="Map a business process using Box Canvas" width="1280" height="720" data-path="images/box-fundamentals/image-1.jpg" />

    <CarouselCard img="https://mintcdn.com/product-docs/GS2O48pS2WaD6nkd/images/box-fundamentals/image-2.jpg?fit=max&auto=format&n=GS2O48pS2WaD6nkd&q=85&s=9f0471b4683b8a0f73c9d7be2e079607" video="https://players.brightcove.net/6291496955001/default_default/index.html?videoId=6325458571112" title="Host visual collaboration sessions with Box Canvas" width="1280" height="720" data-path="images/box-fundamentals/image-2.jpg" />

    <CarouselCard img="https://mintcdn.com/product-docs/GS2O48pS2WaD6nkd/images/box-fundamentals/image-3.jpg?fit=max&auto=format&n=GS2O48pS2WaD6nkd&q=85&s=0ffbd6e9e6f9ddc118db368e7b28c8ee" video="https://players.brightcove.net/6291496955001/default_default/index.html?videoId=6332247466112" title="Sharing and collaborating on Box files in Slack" width="1280" height="720" data-path="images/box-fundamentals/image-3.jpg" />

    <CarouselCard img="https://mintcdn.com/product-docs/GS2O48pS2WaD6nkd/images/box-fundamentals/image-4.jpg?fit=max&auto=format&n=GS2O48pS2WaD6nkd&q=85&s=3eb79db9309cd400234d81f7813b65e1" video="https://players.brightcove.net/6291496955001/default_default/index.html?videoId=6331400178112" title="Sharing Box content in Microsoft Teams" width="1280" height="720" data-path="images/box-fundamentals/image-4.jpg" />

    <CarouselCard img="https://mintcdn.com/product-docs/GS2O48pS2WaD6nkd/images/box-fundamentals/image-5.jpg?fit=max&auto=format&n=GS2O48pS2WaD6nkd&q=85&s=b885eb23c8c81f5c20b7bdc3d4053c46" video="https://players.brightcove.net/6291496955001/default_default/index.html?videoId=6331401443112" title="Uploading Box content to Microsoft Teams" width="1280" height="720" data-path="images/box-fundamentals/image-5.jpg" />

    <CarouselCard img="https://mintcdn.com/product-docs/GS2O48pS2WaD6nkd/images/box-fundamentals/image-6.jpg?fit=max&auto=format&n=GS2O48pS2WaD6nkd&q=85&s=a57772796b40b0ea4e8a4da1293bd385" video="https://players.brightcove.net/6291496955001/default_default/index.html?videoId=6323983394112" title="Automate your daily workflows with Box Relay" width="1280" height="720" data-path="images/box-fundamentals/image-6.jpg" />
  </CarouselItem>
</Carousel>

View more courses [here](https://training.box.com/trainings).
