]> 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 quincy beta 17.1.0
[ceph.git] / ceph / src / pybind / mgr / dashboard / frontend / src / app / shared / components / pwd-expiration-notification / pwd-expiration-notification.component.html
CommitLineData
20effc67
TL
1<cd-alert-panel class="no-margin-bottom"
2 [type]="alertType"
3 *ngIf="displayNotification"
4 [showTitle]="false"
5 size="slim"
6 [dismissible]="alertType !== 'danger'"
7 (dismissed)="onDismissed()">
9f95a23c
TL
8 <div *ngIf="expirationDays === 0"
9 i18n>Your password will expire in <strong>less than 1</strong> day. Click
f67539c2
TL
10 <a routerLink="/user-profile/edit"
11 class="alert-link">here</a> to change it now.</div>
9f95a23c
TL
12 <div *ngIf="expirationDays > 0"
13 i18n>Your password will expire in <strong>{{ expirationDays }}</strong> day(s). Click
14 <a routerLink="/user-profile/edit"
15 class="alert-link">here</a> to change it now.</div>
20effc67 16</cd-alert-panel>