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

# First Login

> How to log in to Juno for the first time and set up your profile.

export const SupportContact = () => {
  return <Info title="Still need help?">
      Contact us at <a href="mailto:support@junojourney.com">support@junojourney.com</a> or use the support widget in Juno.
    </Info>;
};

export const InternalNote = ({children}) => {
  const [isInternal, setIsInternal] = useState(false);
  useEffect(() => {
    const user = window.__mintlify_user__;
    if (user?.groups?.includes("internal")) setIsInternal(true);
  }, []);
  if (!isInternal) return null;
  return <div className="internal-note">
      <strong className="internal-note-title">🔒 Internal Note</strong>
      <div>{children}</div>
    </div>;
};

## Logging in

Your admin will provide you with a Juno URL. Navigate there in any browser.

You'll see one of two login options depending on how your organization has configured Juno:

<Tabs>
  <Tab title="Single Sign-On (SSO)">
    If your organization uses SSO (Google, LinkedIn, or SAML-based providers):

    <Steps>
      <Step title="Click the SSO button">
        You'll be redirected to your organization's identity provider.
      </Step>

      <Step title="Authenticate with your work account">
        Use your usual work credentials — no separate Juno password needed.
      </Step>

      <Step title="You're in">
        You'll be redirected back to Juno and land on your home dashboard.
      </Step>
    </Steps>

    <InternalNote>
      SSO users bypass email verification. If SSO login fails, check admin panel → Integrations → SSO and confirm the tenant's SAML configuration is active. The tenant ID in the SSO config must match the org slug.
    </InternalNote>
  </Tab>

  <Tab title="Email & Password">
    If your organization uses email/password login:

    <Steps>
      <Step title="Enter your work email">
        Use the email address your admin registered you with.
      </Step>

      <Step title="Set your password">
        If this is your first time, use the "Forgot password" link to receive a password reset email. Check your spam folder if it doesn't arrive within a few minutes.
      </Step>

      <Step title="Log in">
        Enter your email and password to access your dashboard.
      </Step>
    </Steps>

    <InternalNote>
      Password reset uses Firebase Auth. If the email doesn't arrive: check Firebase console → confirm the user exists under the correct tenant. Common issue: user was created under the wrong tenant.
    </InternalNote>
  </Tab>
</Tabs>

## Your profile

Most profile attributes (name, department, job title, manager) are **synced automatically** from your organization's HR system. You don't need to set them up manually.

To view or update your profile, click your **avatar at the bottom-left of the sidebar**.

### What you can manage on your profile

| Section                  | What it is                                                                                                                                           |
| ------------------------ | ---------------------------------------------------------------------------------------------------------------------------------------------------- |
| **Profile photo**        | Upload an image — used across the platform (comments, leaderboards, mentions)                                                                        |
| **Personal information** | View synced HR data (name, manager, department, job title)                                                                                           |
| **Skills**               | Add the skills you have so the platform can recommend relevant content and goals — see [Competencies & Skills](/development/competencies-and-skills) |
| **Education**            | Add degrees, schools, and graduation years                                                                                                           |
| **Certifications**       | Add external certifications (PMP, AWS, etc.) — separate from Juno-issued [Certifications](/learning/certifications)                                  |
| **Projects**             | Showcase work projects, side projects, and portfolio items                                                                                           |
| **Growth planning**      | Quick access to your [Personal Development Plan](/development/personal-development-plan) and goals                                                   |
| **Language preferences** | UI language (en, fr, he, and more)                                                                                                                   |
| **Sign out**             | Sign out of Juno on this device                                                                                                                      |

Your profile is also where the platform builds its recommendations — adding skills and goals here improves AI-powered content suggestions.

<img src="https://mintcdn.com/juno-76d1c392/HrHBj6AIiyrDPc7W/images/getting-started/home-2026.png?fit=max&auto=format&n=HrHBj6AIiyrDPc7W&q=85&s=ac1d16e48c958d746d15d32e5ae955bd" alt="Juno home after first login" width="1280" height="800" data-path="images/getting-started/home-2026.png" />

## Trouble logging in?

See [Login Issues](/troubleshooting/login-issues) for common problems and fixes.

<SupportContact />
