Can someone help me please, exactly where is the comment I want to be redirected to another page being false
<ng-container *ngIf="!loginService.verificarToken(); else postLogin">
<ul class="navbar-nav mr-auto"><!--mr-auto-->
<li class="nav-item">
<a class="nav-link" routerLink="/HOME" routerLinkActive="active">HELLO</a>
</li>
</ul>
</ng-container>
<ng-template #postLogin>
<ul class="navbar-nav mr-auto"><!--mr-auto-->
<!--
in case it is false I want you to redirect me to another html page
????
-->
</ul>
</ng-template>