mirror of
https://github.com/bitwarden/browser
synced 2025-12-15 15:53:27 +00:00
24 lines
719 B
HTML
24 lines
719 B
HTML
<bit-card *ngFor="let credential of credentials$ | async" class="tw-mb-2">
|
|
<div class="tw-flex tw-justify-between tw-items-center">
|
|
<div class="tw-flex tw-flex-col">
|
|
<bit-color-password
|
|
class="tw-font-mono"
|
|
[password]="credential.credential"
|
|
></bit-color-password>
|
|
<span class="tw-text-muted" bitTypography="body1">{{
|
|
credential.generationDate | date: "medium"
|
|
}}</span>
|
|
</div>
|
|
<button
|
|
bitIconButton="bwi-clone"
|
|
bitSuffix
|
|
size="small"
|
|
type="button"
|
|
[appCopyClick]="credential.credential"
|
|
[ariaLabel]="'copyPassword' | i18n"
|
|
[appA11yTitle]="'copyPassword' | i18n"
|
|
showToast
|
|
></button>
|
|
</div>
|
|
</bit-card>
|