Skip to main content

Login

Description

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 in case the learner forgets their password. Once learner signs in successfully, learner 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 />
);
}