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

# Sign in

> Access Studio and select the organisation whose careers site you manage.

export function LessonFooterBack() {
  return <a className="lesson-footer-back" href="/learn/overview">
      <svg aria-hidden="true" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round">
        <path d="M19 12H5"></path>
        <path d="m12 19-7-7 7-7"></path>
      </svg>
      Back to CMS fundamentals
    </a>;
}

export function LessonHeaderBack() {
  useEffect(() => {
    const header = document.querySelector("#header");
    if (!header || header.querySelector(".lesson-header-back")) {
      return undefined;
    }
    const link = document.createElement("a");
    link.className = "lesson-header-back";
    link.href = "/learn/overview";
    link.setAttribute("aria-label", "Back to CMS fundamentals");
    link.setAttribute("title", "Back to CMS fundamentals");
    link.innerHTML = `
      <svg aria-hidden="true" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
        <path d="M19 12H5"></path>
        <path d="m12 19-7-7 7-7"></path>
      </svg>
    `;
    header.append(link);
    return () => link.remove();
  }, []);
  return null;
}

<LessonHeaderBack />

<Frame caption="1 min 48 sec — Sign in to Studio">
  <iframe className="w-full aspect-video rounded-xl" src="https://www.loom.com/embed/38c2e309888b48738d9430157f4bc54f" title="Sign in to Studio" allowFullScreen />
</Frame>

<LessonFooterBack />

<Accordion title="Read the lesson" icon="file-lines">
  ## What you will do

  Sign in to Studio and select the organisation whose careers site you manage.

  <Steps>
    ### Open Studio

    Go to [studio.inploi.com](https://studio.inploi.com).

    ### Sign in

    Use the sign-in method available for your account. You must have been invited to Studio using the email address you use to sign in.

    ### Select your organisation

    After signing in, select the organisation you need. You will only see organisations you have permission to access.

    ### Go to the area you need

    Use the left-hand navigation to open **CMS** and continue with the [CMS overview](/learn/cms-overview). The navigation and actions available to you depend on your permissions.
  </Steps>

  <Note>
    If you cannot sign in, do not see the right organisation, or cannot access an area you need, contact your organisation administrator, inploi contact, or [support](mailto:support@inploi.com).
  </Note>
</Accordion>

<Accordion title="Video transcript">
  <Note>
    Edited for clarity and current terminology.
  </Note>

  ### 0:00

  Welcome to the Studio CMS training. These lessons cover common careers-site updates, such as changing copy and replacing images.

  ### 1:00

  Go to `studio.inploi.com` and sign in with the email address associated with your Studio account. Then choose the organisation you want to work in. You will only see organisations you have permission to access.
</Accordion>

## Related articles

* [Studio overview](/studio/overview)
* [Users and permissions in Studio](/studio/settings/users-and-permissions)

Next up: [CMS overview](/learn/cms-overview).
