2018-06-06 15:43:28 +02:00
|
|
|
<div class="container page-content">
|
|
|
|
<div class="row">
|
2018-06-06 23:25:57 +02:00
|
|
|
<div class="col-3">
|
2019-02-21 22:50:37 +01:00
|
|
|
<app-vault-groupings (onAllClicked)="clearGroupingFilters()" (onFavoritesClicked)="filterFavorites()"
|
|
|
|
(onCipherTypeClicked)="filterCipherType($event)" (onFolderClicked)="filterFolder($event.id)"
|
|
|
|
(onAddFolder)="addFolder()" (onEditFolder)="editFolder($event.id)"
|
2018-06-07 05:23:14 +02:00
|
|
|
(onCollectionClicked)="filterCollection($event.id)" (onSearchTextChanged)="filterSearchText($event)">
|
2018-06-06 23:25:57 +02:00
|
|
|
</app-vault-groupings>
|
|
|
|
</div>
|
|
|
|
<div class="col-6">
|
2018-06-07 23:12:11 +02:00
|
|
|
<div class="page-header d-flex">
|
2018-07-28 04:36:25 +02:00
|
|
|
<h1>
|
|
|
|
{{'myVault' | i18n}}
|
|
|
|
<small #actionSpinner [appApiAction]="ciphersComponent.actionPromise">
|
2019-02-21 22:50:37 +01:00
|
|
|
<i *ngIf="actionSpinner.loading" class="fa fa-spinner fa-spin text-muted"
|
|
|
|
title="{{'loading' | i18n}}"></i>
|
2018-07-28 04:36:25 +02:00
|
|
|
</small>
|
|
|
|
</h1>
|
2018-06-07 23:12:11 +02:00
|
|
|
<div class="ml-auto d-flex">
|
|
|
|
<div class="dropdown mr-2" appListDropdown>
|
2019-02-21 22:50:37 +01:00
|
|
|
<button class="btn btn-sm btn-outline-secondary dropdown-toggle" type="button"
|
|
|
|
id="bulkActionsButton" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
2018-06-07 23:12:11 +02:00
|
|
|
<i class="fa fa-cog"></i>
|
|
|
|
</button>
|
2018-06-12 23:11:24 +02:00
|
|
|
<div class="dropdown-menu dropdown-menu-right" aria-labelledby="bulkActionsButton">
|
|
|
|
<a class="dropdown-item" href="#" appStopClick (click)="bulkMove()">
|
2018-06-07 23:12:11 +02:00
|
|
|
<i class="fa fa-fw fa-share"></i>
|
|
|
|
{{'moveSelected' | i18n}}
|
|
|
|
</a>
|
2018-06-12 23:11:24 +02:00
|
|
|
<a class="dropdown-item" href="#" appStopClick (click)="bulkShare()">
|
2018-06-07 23:12:11 +02:00
|
|
|
<i class="fa fa-fw fa-share-alt"></i>
|
|
|
|
{{'shareSelected' | i18n}}
|
|
|
|
</a>
|
2018-06-12 23:11:24 +02:00
|
|
|
<a class="dropdown-item text-danger" href="#" (click)="bulkDelete()">
|
2018-06-07 23:12:11 +02:00
|
|
|
<i class="fa fa-fw fa-trash-o"></i>
|
|
|
|
{{'deleteSelected' | i18n}}
|
|
|
|
</a>
|
|
|
|
<div class="dropdown-divider"></div>
|
2018-06-12 23:11:24 +02:00
|
|
|
<a class="dropdown-item" href="#" appStopClick (click)="selectAll(true)">
|
2018-06-07 23:12:11 +02:00
|
|
|
<i class="fa fa-fw fa-check-square-o"></i>
|
|
|
|
{{'selectAll' | i18n}}
|
|
|
|
</a>
|
2018-06-12 23:11:24 +02:00
|
|
|
<a class="dropdown-item" href="#" appStopClick (click)="selectAll(false)">
|
2018-06-07 23:12:11 +02:00
|
|
|
<i class="fa fa-fw fa-minus-square-o"></i>
|
|
|
|
{{'unselectAll' | i18n}}
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
2018-07-18 05:21:23 +02:00
|
|
|
<button type="button" class="btn btn-outline-primary btn-sm" (click)="addCipher()">
|
2018-06-07 23:12:11 +02:00
|
|
|
<i class="fa fa-plus fa-fw"></i>{{'addItem' | i18n}}
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
</div>
|
2019-02-21 22:50:37 +01:00
|
|
|
<app-vault-ciphers (onCipherClicked)="editCipher($event)"
|
|
|
|
(onAttachmentsClicked)="editCipherAttachments($event)" (onAddCipher)="addCipher()"
|
2018-06-12 19:08:47 +02:00
|
|
|
(onShareClicked)="shareCipher($event)" (onCollectionsClicked)="editCipherCollections($event)">
|
2018-06-06 23:25:57 +02:00
|
|
|
</app-vault-ciphers>
|
|
|
|
</div>
|
|
|
|
<div class="col-3">
|
2018-07-18 15:21:23 +02:00
|
|
|
<div class="card border-warning mb-4" *ngIf="showUpdateKey">
|
|
|
|
<div class="card-header bg-warning text-white">
|
|
|
|
<i class="fa fa-warning fa-fw"></i> {{'updateKeyTitle' | i18n}}
|
|
|
|
</div>
|
|
|
|
<div class="card-body">
|
|
|
|
<p>{{'updateEncryptionKeyShortDesc' | i18n}}</p>
|
|
|
|
<button class="btn btn-block btn-outline-secondary" type="button" (click)="updateKey()">
|
|
|
|
{{'updateEncryptionKey' | i18n}}
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
</div>
|
2018-07-12 17:34:51 +02:00
|
|
|
<app-verify-email *ngIf="showVerifyEmail" class="d-block mb-4"></app-verify-email>
|
|
|
|
<div class="card border-warning mb-4" *ngIf="showBrowserOutdated">
|
|
|
|
<div class="card-header bg-warning text-white">
|
|
|
|
<i class="fa fa-warning fa-fw"></i> {{'updateBrowser' | i18n}}
|
|
|
|
</div>
|
2018-06-06 15:43:28 +02:00
|
|
|
<div class="card-body">
|
2018-07-12 17:34:51 +02:00
|
|
|
<p>{{'updateBrowserDesc' | i18n}}</p>
|
2019-02-21 22:50:37 +01:00
|
|
|
<a class="btn btn-block btn-outline-secondary" target="_blank"
|
|
|
|
href="https://browser-update.org/update-browser.html" rel="noopener">
|
2018-07-12 17:34:51 +02:00
|
|
|
{{'updateBrowser' | i18n}}
|
|
|
|
</a>
|
2018-06-06 15:43:28 +02:00
|
|
|
</div>
|
2018-07-20 16:44:17 +02:00
|
|
|
</div>
|
|
|
|
<div class="card border-success mb-4" *ngIf="showPremiumCallout">
|
|
|
|
<div class="card-header bg-success text-white">
|
|
|
|
<i class="fa fa-star fa-fw"></i> {{'goPremium' | i18n}}
|
|
|
|
</div>
|
|
|
|
<div class="card-body">
|
|
|
|
<p>{{'premiumUpgradeUnlockFeatures' | i18n}}</p>
|
|
|
|
<a class="btn btn-block btn-outline-secondary" routerLink="/settings/premium">
|
|
|
|
{{'goPremium' | i18n}}
|
|
|
|
</a>
|
|
|
|
</div>
|
2018-06-06 15:43:28 +02:00
|
|
|
</div>
|
2018-07-12 17:34:51 +02:00
|
|
|
<div class="card">
|
2018-07-19 19:56:44 +02:00
|
|
|
<div class="card-header d-flex">
|
2018-07-04 15:55:52 +02:00
|
|
|
{{'organizations' | i18n}}
|
2019-02-21 22:50:37 +01:00
|
|
|
<a class="ml-auto" href="https://help.bitwarden.com/article/what-is-an-organization/"
|
|
|
|
target="_blank" rel="noopener" title="{{'learnMore' | i18n}}">
|
2018-07-19 19:56:44 +02:00
|
|
|
<i class="fa fa-question-circle-o"></i>
|
|
|
|
</a>
|
2018-06-07 23:12:11 +02:00
|
|
|
</div>
|
|
|
|
<div class="card-body">
|
2018-07-04 15:55:52 +02:00
|
|
|
<app-organizations [vault]="true"></app-organizations>
|
2018-06-07 23:12:11 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
2018-06-06 15:43:28 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2018-06-06 23:25:57 +02:00
|
|
|
<ng-template #attachments></ng-template>
|
|
|
|
<ng-template #folderAddEdit></ng-template>
|
2018-06-07 05:23:14 +02:00
|
|
|
<ng-template #cipherAddEdit></ng-template>
|
2018-06-12 17:46:11 +02:00
|
|
|
<ng-template #share></ng-template>
|
|
|
|
<ng-template #collections></ng-template>
|
2018-06-12 23:11:24 +02:00
|
|
|
<ng-template #bulkDeleteTemplate></ng-template>
|
|
|
|
<ng-template #bulkMoveTemplate></ng-template>
|
|
|
|
<ng-template #bulkShareTemplate></ng-template>
|
2018-07-17 23:22:51 +02:00
|
|
|
<ng-template #updateKeyTemplate></ng-template>
|