1 <ngb-alert class="no-margin-bottom"
3 *ngIf="displayNotification"
4 (closed)="close($event)">
5 <div *ngIf="expirationDays === 0"
6 i18n>Your password will expire in <strong>less than 1</strong> day. Click
7 <a routerLink="/user-profile/edit"
8 class="alert-link">here</a> to change it now.</div>
9 <div *ngIf="expirationDays > 0"
10 i18n>Your password will expire in <strong>{{ expirationDays }}</strong> day(s). Click
11 <a routerLink="/user-profile/edit"
12 class="alert-link">here</a> to change it now.</div>