Skip to main content

Login

The Login component renders a form for learners to enter email address and password to sign in, as well as a link to retrieve password. Once the learner signs in successfully, they will be redirected to the dashboard page.

✨ View Component in Storybook

Installation

npm install @thoughtindustries/user

Props

None

Example Code

import { Login } from '@thoughtindustries/user';

export function MyComponent() {
return <Login />;
}