1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-19 17:53:39 +00:00

allow users to change lock options, default to 15 min

This commit is contained in:
Kyle Spearrin
2018-07-27 15:08:59 -04:00
parent 4b4e847816
commit f385c3773c
6 changed files with 63 additions and 2 deletions

View File

@@ -3,6 +3,17 @@
</div>
<p>{{'optionsDesc' | i18n}}</p>
<form (ngSubmit)="submit()" ngNativeValidate>
<div class="row">
<div class="col-6">
<div class="form-group">
<label for="lockOption">{{'lockOptions' | i18n}}</label>
<select id="lockOption" name="LockOption" [(ngModel)]="lockOption" class="form-control">
<option *ngFor="let o of lockOptions" [ngValue]="o.value">{{o.name}}</option>
</select>
<small class="form-text text-muted">{{'lockOptionsDesc' | i18n}}</small>
</div>
</div>
</div>
<div class="row">
<div class="col-6">
<div class="form-group">