Implementing the Sign-In Process
Learn to implement sign-in page in our React frontend.
We'll cover the following...
Let's implement the sign-in page in SignInPage.tsx
as follows:
We'll start by adding the following
import
statements:
Press + to interact
import { StatusText } from './Styles';import { useAuth } from './Auth';
StatusText
is a shared style we are going to use when we inform the user that we are redirecting to and from Auth0. useAuth
is the custom Hook ...