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

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

41 lines
1.5 KiB
HTML
Raw Normal View History

<form (ngSubmit)="submit()" [formGroup]="exportForm">
2018-04-10 01:05:36 +02:00
<header>
<div class="left">
<button type="button" 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>
</button>
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 type="submit" [disabled]="!exportForm.enabled">
{{ "submit" | i18n }}
</button>
2018-04-10 01:05:36 +02:00
</div>
</header>
<main tabindex="-1">
<app-callout type="warning" title="{{ 'vaultExportDisabled' | i18n }}" *ngIf="disabledByPolicy">
{{ "personalVaultExportPolicyInEffect" | i18n }}
</app-callout>
<tools-export-scope-callout *ngIf="!disabledByPolicy"></tools-export-scope-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>
<app-user-verification ngDefaultControl formControlName="secret" name="Secret">
</app-user-verification>
2021-12-21 15:43:35 +01:00
</div>
<div id="confirmIdentityHelp" 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>
</main>
2018-04-10 01:05:36 +02:00
</form>