mirror of
https://github.com/bitwarden/browser
synced 2025-12-17 08:43:33 +00:00
* add constraint support to UserStateSubject * add dynamic constraints * implement password policy constraints * replace policy evaluator with constraints in credential generation service * add cascade between minNumber and minSpecial Co-authored-by: Daniel James Smith <2670567+djsmith85@users.noreply.github.com>
40 lines
1.4 KiB
HTML
40 lines
1.4 KiB
HTML
<bit-section>
|
|
<bit-section-header *ngIf="showHeader">
|
|
<h6 bitTypography="h6">{{ "options" | i18n }}</h6>
|
|
</bit-section-header>
|
|
<form class="box" [formGroup]="settings" class="tw-container">
|
|
<div class="tw-mb-4">
|
|
<bit-card>
|
|
<bit-form-field disableMargin>
|
|
<bit-label>{{ "numWords" | i18n }}</bit-label>
|
|
<input
|
|
bitInput
|
|
formControlName="numWords"
|
|
id="num-words"
|
|
type="number"
|
|
[min]="minNumWords"
|
|
[max]="maxNumWords"
|
|
/>
|
|
</bit-form-field>
|
|
</bit-card>
|
|
</div>
|
|
<div>
|
|
<bit-card>
|
|
<bit-form-field>
|
|
<bit-label>{{ "wordSeparator" | i18n }}</bit-label>
|
|
<input bitInput formControlName="wordSeparator" id="word-separator" type="text" />
|
|
</bit-form-field>
|
|
<bit-form-control>
|
|
<input bitCheckbox formControlName="capitalize" id="capitalize" type="checkbox" />
|
|
<bit-label>{{ "capitalize" | i18n }}</bit-label>
|
|
</bit-form-control>
|
|
<bit-form-control [disableMargin]="!policyInEffect">
|
|
<input bitCheckbox formControlName="includeNumber" id="include-number" type="checkbox" />
|
|
<bit-label>{{ "includeNumber" | i18n }}</bit-label>
|
|
</bit-form-control>
|
|
<p *ngIf="policyInEffect" bitTypography="helper">{{ "generatorPolicyInEffect" | i18n }}</p>
|
|
</bit-card>
|
|
</div>
|
|
</form>
|
|
</bit-section>
|