<div dir="ltr">Hi everyone,<div><br></div><div>Has any of you experienced the following behavior:</div><div>we have an AngularJS app with some of its resources protected by Keycloak - setup:</div><div><div>var auth = {};</div><div>angular.element(document).ready(function () {</div><div>    var env = &#39;keycloak&#39;;</div><div>    var keycloakAuth = new Keycloak(env + &#39;.json&#39;);</div><div>    keycloakAuth.init({onLoad: &#39;check-sso&#39;})</div><div>        .success(function () {</div><div>        auth.authz = keycloakAuth;</div><div>        module.factory(&#39;Auth&#39;, function() {</div><div>            return auth;</div><div>        });</div><div>        angular.bootstrap(document, [&quot;client_id&quot;]);</div><div>    }).error(function () {</div><div><br></div><div>    });</div><div>});</div></div><div><br></div><div>Everything works as expected, except that in the registration process if the user does NOT accept the &quot;Terms and Conditions&quot; the page where it came from, present in the redirect_fragment is not rendered - but it is being rendered when I refresh the page as expected...</div><div><br></div><div>Thanks,</div><div>Adrian  </div></div>