bitwarden-estensione-browser/src/popup/generator/password-generator-history....

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

49 lines
1.5 KiB
HTML
Raw Normal View History

2018-04-09 23:35:16 +02:00
<header>
<div class="left">
<button type="button" appBlurClick type="button" (click)="close()">
<span class="header-icon" aria-hidden="true"><i class="bwi bwi-angle-left"></i></span>
2018-04-09 23:35:16 +02:00
<span>{{ "back" | i18n }}</span>
</button>
</div>
2021-11-02 23:28:53 +01:00
<h1 class="center">
2018-04-09 23:35:16 +02:00
<span class="title">{{ "passwordHistory" | i18n }}</span>
2021-11-02 23:28:53 +01:00
</h1>
2018-04-09 23:35:16 +02:00
<div class="right">
<button type="button" appBlurClick type="button" (click)="clear()">
2018-04-09 23:35:16 +02:00
{{ "clear" | i18n }}
</button>
</div>
</header>
<main tabindex="-1">
2018-04-09 23:35:16 +02:00
<div class="box list full-list" *ngIf="history && history.length">
<div class="box-content">
<div class="box-content-row box-content-row-flex" *ngFor="let h of history">
<div class="row-main">
2018-04-10 04:53:46 +02:00
<div class="row-main-content">
<div
class="monospaced password-wrapper"
appSelectCopy
2019-02-21 22:53:57 +01:00
[innerHTML]="h.password | colorPassword"
></div>
2018-04-10 04:53:46 +02:00
<span class="detail">{{ h.date | date: "medium" }}</span>
2018-04-09 23:35:16 +02:00
</div>
</div>
<div class="action-buttons">
2021-12-21 15:43:35 +01:00
<button
type="button"
class="row-btn"
appStopClick
appA11yTitle="{{ 'copyPassword' | i18n }}"
2019-02-21 22:53:57 +01:00
(click)="copy(h.password)"
2021-12-21 15:43:35 +01:00
>
<i class="bwi bwi-lg bwi-clone" aria-hidden="true"></i>
</button>
2021-12-21 15:43:35 +01:00
</div>
</div>
2018-04-09 23:35:16 +02:00
</div>
2021-12-21 15:43:35 +01:00
</div>
2018-04-09 23:35:16 +02:00
<div class="no-items" *ngIf="!history || !history.length">
<p>{{ "noPasswordsInList" | i18n }}</p>
</div>
</main>