mirror of
https://github.com/bitwarden/browser
synced 2026-01-07 02:53:28 +00:00
* Changed policies dialog “enabled” checkboxes title to “Turn on” * Changed policies “Enabled” badge text to “On” * Moved master password reset policy up to 3rd row * Changed the wording on the Single-Sign-On page * Updated policies page content * Master-password component now uses new title text * Two-factor-auth component now uses new title text * Updated personal-ownership model checkbox text * Updated texts for send options policy * Updated the single-sign-on policy description
84 lines
2.2 KiB
HTML
84 lines
2.2 KiB
HTML
<app-callout type="info" *ngIf="showKeyConnectorInfo">
|
|
{{ "keyConnectorPolicyRestriction" | i18n }}
|
|
</app-callout>
|
|
|
|
<div [formGroup]="data">
|
|
<div class="form-group">
|
|
<div class="form-check">
|
|
<input
|
|
class="form-check-input"
|
|
type="checkbox"
|
|
id="enabled"
|
|
[formControl]="enabled"
|
|
name="Enabled"
|
|
/>
|
|
<label class="form-check-label" for="enabled">{{ "turnOn" | i18n }}</label>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="row">
|
|
<div class="col-6 form-group">
|
|
<label for="minComplexity">{{ "minComplexityScore" | i18n }}</label>
|
|
<select
|
|
id="minComplexity"
|
|
name="minComplexity"
|
|
formControlName="minComplexity"
|
|
class="form-control"
|
|
>
|
|
<option *ngFor="let o of passwordScores" [ngValue]="o.value">{{ o.name }}</option>
|
|
</select>
|
|
</div>
|
|
<div class="col-6 form-group">
|
|
<label for="minLength">{{ "minLength" | i18n }}</label>
|
|
<input
|
|
id="minLength"
|
|
class="form-control"
|
|
type="number"
|
|
min="8"
|
|
name="minLength"
|
|
formControlName="minLength"
|
|
/>
|
|
</div>
|
|
</div>
|
|
<div class="form-check">
|
|
<input
|
|
class="form-check-input"
|
|
type="checkbox"
|
|
id="requireUpper"
|
|
name="requireUpper"
|
|
formControlName="requireUpper"
|
|
/>
|
|
<label class="form-check-label" for="requireUpper">A-Z</label>
|
|
</div>
|
|
<div class="form-check">
|
|
<input
|
|
class="form-check-input"
|
|
type="checkbox"
|
|
id="requireLower"
|
|
name="requireLower"
|
|
formControlName="requireLower"
|
|
/>
|
|
<label class="form-check-label" for="requireLower">a-z</label>
|
|
</div>
|
|
<div class="form-check">
|
|
<input
|
|
class="form-check-input"
|
|
type="checkbox"
|
|
id="requireNumbers"
|
|
name="requireNumbers"
|
|
formControlName="requireNumbers"
|
|
/>
|
|
<label class="form-check-label" for="requireNumbers">0-9</label>
|
|
</div>
|
|
<div class="form-check">
|
|
<input
|
|
class="form-check-input"
|
|
type="checkbox"
|
|
id="requireSpecial"
|
|
name="requireSpecial"
|
|
formControlName="requireSpecial"
|
|
/>
|
|
<label class="form-check-label" for="requireSpecial">!@#$%^&*</label>
|
|
</div>
|
|
</div>
|