User Details Drawer
The userDetailsPage function opens a drawer displaying user details after a successful login. This feature is available only if you're using Conscent's login system.
const userDetailsPage = () => {
console.log('User details page on its way.');
// @ts-ignore
const csc = window._csc as any;
csc('open-user-details-page', {
onSuccess: (data: any) => {
console.log(data);
},
});
};
Usage:
document.getElementById('profile-icon').addEventListener('click', () => {
userDetailsPage();
});Last updated