You're already logged in

Does anyone know why the You’re already logged in. Logout message pops up when previewing. For example, I’ve attempted to log out, and. login with another ID while previewing and always get this same message.

Thank, B

Hi @BrianJersey , sometimes this happens,

I solved this using a blank page, and applied rules to that page, instead of using login redirect rules,

At the login page rules, you want to apply only logged out users, and send the logged ones to that redirect page

one solution is to change the layout setting of the login form to the main application layout. in this way even if you get the ‘already logged in’ message , you can still use the main app menu or other links to load the desired page. since you are already logged in, you can open these pages problem free.

Hi,

If I am understanding your issue correctly, you can also solve it by using the following javascript and updating it to your page-

TB.render('(login-component-id)-login_success', function(data) {
	
	$('css class added to login component through the design tabs "Additional CSS Classes"').hide();
});