passman/templates/views/partials/forms/settings/export.html
brantje 6767322a22
Lock vault after 3 wrong attempts (Fixes #197)
Fix share button, fix shared_key not added to storedCredential after sharing (Fixes #249)
    Add password app importer. Fixes #248
    Fix version check via proxy. Fixes #237
    Fix activity app not filtering. Fixes #246
    Add EnPass txt importer. Fixes #159
    Fix for disabled share button
    Require vault key for export. Fixes #199
    Indicate that sharing only works with users that have 1 or more vaults.
    Fixes #242
    Reset tags on logout. Fixes #245
    Ability to enter OTP secret manually. Fixes #198
    Create teampass importer. Fixes #244
2017-02-17 21:25:18 +01:00

36 lines
No EOL
1 KiB
HTML

<div ng-controller="ExportCtrl">
<div class="row">
<div class="col-xs-6">
<label>{{ 'export.type' | translate}}
<select ng-init="raw" ng-model="raw"
ng-change="setExporter(raw)">
<option ng-repeat="exporter in available_exporters"
value="{{exporter}}">
{{exporter.name}}
</option>
</select></label>
<div><b>{{selectedExporter.description}}</b></div>
<div ng-show="selectedExporter" class="col-xs-3 nopadding">
<label>{{ 'export.confirm.text' | translate }}</label>
<input type="password" ng-model="confirm_key">
<br />
<div class="alert alert-warning" ng-show="error">
{{error}}
</div>
</div>
<div class="clearfix">
<button class=" button" ng-click="startExport()"
ng-if="selectedExporter">{{ 'export' | translate}}
</button>
</div>
</div>
<div class="col-xs-6">
<div ng-if="log" class="import_log">
<textarea id="import_log"
auto-scroll="log">{{log.join('\n')}}</textarea>
</div>
</div>
</div>
</div>