bitwarden-estensione-browser/src/popup/settings/export.component.html

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

40 lines
1.3 KiB
HTML
Raw Normal View History

<form (ngSubmit)="submit()" [formGroup]="exportForm">
2018-04-10 01:05:36 +02:00
<header>
<div class="left">
2018-04-13 19:18:43 +02:00
<a routerLink="/tabs/settings">
<span class="header-icon" aria-hidden="true"><i class="bwi bwi-angle-left"></i></span>
2018-04-11 05:03:29 +02:00
<span>{{ "back" | i18n }}</span>
2018-04-13 19:18:43 +02:00
</a>
2018-04-10 01:05:36 +02:00
</div>
2021-11-02 23:28:53 +01:00
<h1 class="center">
2018-04-10 01:05:36 +02:00
<span class="title">{{ "exportVault" | i18n }}</span>
2021-11-02 23:28:53 +01:00
</h1>
2018-04-10 01:05:36 +02:00
<div class="right">
<button appBlurClick type="submit" [disabled]="!exportForm.enabled">
{{ "submit" | i18n }}
</button>
2018-04-10 01:05:36 +02:00
</div>
</header>
<content>
<app-callout type="warning" title="{{ 'vaultExportDisabled' | i18n }}" *ngIf="disabledByPolicy">
{{ "personalVaultExportPolicyInEffect" | i18n }}
</app-callout>
2018-04-10 01:05:36 +02:00
<div class="box">
<div class="box-content">
2018-12-17 17:00:20 +01:00
<div class="box-content-row" appBoxRow>
<label for="format">{{ "fileFormat" | i18n }}</label>
<select id="format" name="Format" formControlName="format">
<option *ngFor="let f of formatOptions" [value]="f.value">{{ f.name }}</option>
2018-12-17 17:00:20 +01:00
</select>
2018-04-10 01:05:36 +02:00
</div>
2021-11-17 20:31:35 +01:00
<app-verify-master-password ngDefaultControl formControlName="secret" name="Secret">
</app-verify-master-password>
2021-12-21 15:43:35 +01:00
</div>
2018-04-10 01:05:36 +02:00
<div class="box-footer">
2021-11-17 20:31:35 +01:00
<p>{{ "confirmIdentity" | i18n }}</p>
2021-12-21 15:43:35 +01:00
</div>
</div>
2018-04-10 01:05:36 +02:00
</content>
</form>