mirror of
https://github.com/bitwarden/browser
synced 2025-12-17 00:33:44 +00:00
46 lines
1.8 KiB
HTML
46 lines
1.8 KiB
HTML
<div class="tw-mb-1 text-primary" bitTypography="body1">{{ "accessIntelligence" | i18n }}</div>
|
|
<h1 bitTypography="h1">{{ "passwordRisk" | i18n }}</h1>
|
|
<div class="tw-text-muted">{{ "discoverAtRiskPasswords" | i18n }}</div>
|
|
<div class="tw-bg-primary-100 tw-rounded-lg tw-w-full tw-px-8 tw-py-2 tw-my-4">
|
|
<i class="bwi bwi-exclamation-triangle bwi-lg tw-text-[1.2rem] text-muted" aria-hidden="true"></i>
|
|
<span class="tw-mx-4">{{
|
|
"dataLastUpdated" | i18n: (dataLastUpdated | date: "MMMM d, y 'at' h:mm a")
|
|
}}</span>
|
|
<a
|
|
bitButton
|
|
buttonType="unstyled"
|
|
class="tw-border-none !tw-font-normal tw-cursor-pointer"
|
|
[bitAction]="refreshData.bind(this)"
|
|
>
|
|
{{ "refresh" | i18n }}
|
|
</a>
|
|
</div>
|
|
<bit-tab-group [(selectedIndex)]="tabIndex">
|
|
<bit-tab label="Raw Data">
|
|
<tools-password-health></tools-password-health>
|
|
</bit-tab>
|
|
<bit-tab label="Raw Data + members">
|
|
<tools-password-health-members></tools-password-health-members>
|
|
</bit-tab>
|
|
<!-- <bit-tab label="{{ 'allApplicationsWithCount' | i18n: apps.length }}">
|
|
<h2 bitTypography="h2">{{ "allApplications" | i18n }}</h2>
|
|
<tools-application-table></tools-application-table>
|
|
</bit-tab>
|
|
<bit-tab>
|
|
<ng-template bitTabLabel>
|
|
<i class="bwi bwi-star"></i>
|
|
{{ "priorityApplicationsWithCount" | i18n: priorityApps.length }}
|
|
</ng-template>
|
|
<h2 bitTypography>{{ "priorityApplications" | i18n }}</h2>
|
|
<tools-application-table></tools-application-table>
|
|
</bit-tab>
|
|
<bit-tab>
|
|
<ng-template bitTabLabel>
|
|
<i class="bwi bwi-envelope"></i>
|
|
{{ "notifiedMembersWithCount" | i18n: priorityApps.length }}
|
|
</ng-template>
|
|
<h2 bitTypography="h2">{{ "notifiedMembers" | i18n }}</h2>
|
|
<tools-notified-members-table></tools-notified-members-table>
|
|
</bit-tab> -->
|
|
</bit-tab-group>
|