79599953

Date: 2025-04-30 09:06:18
Score: 0.5
Natty:
Report link

If you want to know what I use in such a situation:

<div *ngIf="isLoggedIn">
<h1>Welcome User</h1>
.....
</div>
<div *ngIf="isForgotPW"> 
<h1>Forgot Password</h1>
.....
</div>

In your .ts file you can define and change values easily.

isLoggedIn = false;
isForgotPW = true;
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: macmuri