capitalize and include num for pass gen
This commit is contained in:
parent
132c4139ad
commit
d1a7c3390a
|
@ -29,6 +29,16 @@
|
||||||
<input id="word-separator" class="form-control" type="text" maxlength="1" [(ngModel)]="options.wordSeparator"
|
<input id="word-separator" class="form-control" type="text" maxlength="1" [(ngModel)]="options.wordSeparator"
|
||||||
(blur)="saveOptions()">
|
(blur)="saveOptions()">
|
||||||
</div>
|
</div>
|
||||||
|
<div class="form-check">
|
||||||
|
<input id="capitalize" class="form-check-input" type="checkbox" (change)="saveOptions()"
|
||||||
|
[(ngModel)]="options.capitalize">
|
||||||
|
<label for="capitalize" class="form-check-label">{{'capitalize' | i18n}}</label>
|
||||||
|
</div>
|
||||||
|
<div class="form-check">
|
||||||
|
<input id="include-number" class="form-check-input" type="checkbox" (change)="saveOptions()"
|
||||||
|
[(ngModel)]="options.includeNumber">
|
||||||
|
<label for="include-number" class="form-check-label">{{'includeNumber' | i18n}}</label>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<ng-container *ngIf="options.type === 'password'">
|
<ng-container *ngIf="options.type === 'password'">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
|
|
|
@ -827,6 +827,13 @@
|
||||||
"wordSeparator": {
|
"wordSeparator": {
|
||||||
"message": "Word Separator"
|
"message": "Word Separator"
|
||||||
},
|
},
|
||||||
|
"capitalize": {
|
||||||
|
"message": "Capitalize",
|
||||||
|
"description": "Make the first letter of a work uppercase."
|
||||||
|
},
|
||||||
|
"includeNumber": {
|
||||||
|
"message": "Include Number"
|
||||||
|
},
|
||||||
"passwordHistory": {
|
"passwordHistory": {
|
||||||
"message": "Password History"
|
"message": "Password History"
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue