]> git.proxmox.com Git - ceph.git/blame - ceph/src/pybind/mgr/dashboard/frontend/src/app/shared/components/pwd-expiration-notification/pwd-expiration-notification.component.html
import 15.2.5
[ceph.git] / ceph / src / pybind / mgr / dashboard / frontend / src / app / shared / components / pwd-expiration-notification / pwd-expiration-notification.component.html
CommitLineData
9f95a23c
TL
1<alert class="no-margin-bottom"
2 type="{{ alertType }}"
f6b5b4d7 3 *ngIf="displayNotification"
9f95a23c
TL
4 [dismissible]="true"
5 (onClose)="close($event)">
6 <div *ngIf="expirationDays === 0"
7 i18n>Your password will expire in <strong>less than 1</strong> day. Click
8 <a routerLink="/user-profile/edit"
9 class="alert-link">here</a> to change it now.</div>
10 <div *ngIf="expirationDays > 0"
11 i18n>Your password will expire in <strong>{{ expirationDays }}</strong> day(s). Click
12 <a routerLink="/user-profile/edit"
13 class="alert-link">here</a> to change it now.</div>
14</alert>