A footer component for the sign-in flow.
The props for the component.
The sign-in footer.
function App() { // Add class to the footer return ( <CDPReactProvider config={config} theme={themeOverrides}> <SignIn> <SignInBackButton /> <SignInImage /> <SignInTitle /> <SignInDescription /> <SignInForm /> <SignInFooter className="sign-in-footer" /> </SignIn> </CDPReactProvider> );} Copy
function App() { // Add class to the footer return ( <CDPReactProvider config={config} theme={themeOverrides}> <SignIn> <SignInBackButton /> <SignInImage /> <SignInTitle /> <SignInDescription /> <SignInForm /> <SignInFooter className="sign-in-footer" /> </SignIn> </CDPReactProvider> );}
A footer component for the sign-in flow.