The Logout Aborted screen class provides methods associated with the logout-aborted screen. This screen is displayed when a user aborts the logout process.
Import and instantiate the Logout Aborted screen class:
Report incorrect code
Copy
Ask AI
import LogoutAborted from '@auth0/auth0-acul-js/logout-aborted';const logoutAborted = new LogoutAborted();// SDK Properties return a string, number or boolean// ex. "logout-aborted"logoutAborted.screen.name;
The Logout Complete screen class provides methods associated with the logout-complete screen. This screen is displayed when a user completes the logout process.
Import and instantiate the Logout Complete screen class:
Report incorrect code
Copy
Ask AI
import LogoutComplete from '@auth0/auth0-acul-js/logout-complete';const logoutComplete = new LogoutComplete();// SDK Properties return a string, number or boolean// ex. "logout-complete"logoutComplete.screen.name;