Redirect users to custom external page on signout

Adding the code below into app settings custom code header area will redirect your users to a custom external page.

<script>
    window.addEventListener('user-sign-out', (e) => {
        setTimeout(() => {
            window.location.href = 'https://community.softr.io/';
        }, 300);
    });
</script>

Change https://community.softr.io/ link with your own external page link.

1 Like