bitwarden-estensione-browser/src/app/tools/password-generator.componen...

94 lines
4.3 KiB
HTML
Raw Normal View History

2018-06-21 00:16:20 +02:00
<div class="page-header">
<h1>{{'passwordGenerator' | i18n}}</h1>
</div>
<div class="card card-password bg-light my-4">
2019-01-23 23:05:36 +01:00
<div class="card-body" [innerHTML]="password | colorPassword" appFlexCopy></div>
2018-06-21 00:16:20 +02:00
</div>
<div class="form-group">
2018-10-09 04:42:32 +02:00
<div class="form-check form-check-inline">
2019-02-21 22:50:37 +01:00
<input id="generate-password" name="type" value="password" class="form-check-input" type="radio"
(change)="saveOptions()" [(ngModel)]="options.type">
2018-10-09 04:42:32 +02:00
<label for="generate-password" class="form-check-label">{{'password' | i18n}}</label>
</div>
2018-10-09 04:42:32 +02:00
<div class="form-check form-check-inline">
2019-02-21 22:50:37 +01:00
<input id="generate-passphrase" name="type" value="passphrase" class="form-check-input" type="radio"
(change)="saveOptions()" [(ngModel)]="options.type">
2018-10-09 04:42:32 +02:00
<label for="generate-passphrase" class="form-check-label">{{'passphrase' | i18n}}</label>
</div>
</div>
2018-10-09 04:06:15 +02:00
<div class="row" *ngIf="options.type === 'passphrase'">
<div class="form-group col-4">
<label for="num-words">{{'numWords' | i18n}}</label>
2019-02-21 22:50:37 +01:00
<input id="num-words" class="form-control" type="number" min="3" max="20" [(ngModel)]="options.numWords"
(blur)="saveOptions()">
</div>
2018-10-09 04:06:15 +02:00
<div class="form-group col-4">
<label for="word-separator">{{'wordSeparator' | i18n}}</label>
2018-10-09 04:42:32 +02:00
<input id="word-separator" class="form-control" type="text" maxlength="1" [(ngModel)]="options.wordSeparator"
(blur)="saveOptions()">
2018-10-09 04:06:15 +02:00
</div>
</div>
2018-10-09 04:06:15 +02:00
<ng-container *ngIf="options.type === 'password'">
2018-10-08 23:55:07 +02:00
<div class="row">
<div class="form-group col-4">
<label for="length">{{'length' | i18n}}</label>
2019-02-21 22:50:37 +01:00
<input id="length" class="form-control" type="number" min="5" max="128" [(ngModel)]="options.length"
(blur)="saveOptions()">
2018-10-08 23:55:07 +02:00
</div>
<div class="form-group col-4">
<label for="min-number">{{'minNumbers' | i18n}}</label>
<input id="min-number" class="form-control" type="number" min="0" max="9" (input)="saveOptions()"
[(ngModel)]="options.minNumber">
</div>
<div class="form-group col-4">
<label for="min-special">{{'minSpecial' | i18n}}</label>
<input id="min-special" class="form-control" type="number" min="0" max="9" (input)="saveOptions()"
[(ngModel)]="options.minSpecial">
</div>
2018-06-21 00:16:20 +02:00
</div>
2018-10-08 23:55:07 +02:00
<div class="form-group">
<div class="form-check">
2019-02-21 22:50:37 +01:00
<input id="uppercase" class="form-check-input" type="checkbox" (change)="saveOptions()"
[(ngModel)]="options.uppercase">
2018-10-08 23:55:07 +02:00
<label for="uppercase" class="form-check-label">A-Z</label>
</div>
<div class="form-check">
2019-02-21 22:50:37 +01:00
<input id="lowercase" class="form-check-input" type="checkbox" (change)="saveOptions()"
[(ngModel)]="options.lowercase">
2018-10-08 23:55:07 +02:00
<label for="lowercase" class="form-check-label">a-z</label>
</div>
<div class="form-check">
2019-02-21 22:50:37 +01:00
<input id="numbers" class="form-check-input" type="checkbox" (change)="saveOptions()"
[(ngModel)]="options.number">
2018-10-08 23:55:07 +02:00
<label for="numbers" class="form-check-label">0-9</label>
</div>
<div class="form-check">
2019-02-21 22:50:37 +01:00
<input id="special" class="form-check-input" type="checkbox" (change)="saveOptions()"
[(ngModel)]="options.special">
2018-10-08 23:55:07 +02:00
<label for="special" class="form-check-label">!@#$%^&amp;*</label>
</div>
<div class="form-check">
2019-02-21 22:50:37 +01:00
<input id="ambiguous" class="form-check-input" type="checkbox" (change)="saveOptions()"
[(ngModel)]="avoidAmbiguous">
2018-10-08 23:55:07 +02:00
<label for="ambiguous" class="form-check-label">{{'ambiguous' | i18n}}</label>
</div>
2018-06-21 00:16:20 +02:00
</div>
2018-10-08 23:55:07 +02:00
</ng-container>
2018-06-21 00:16:20 +02:00
<div class="d-flex">
<div>
2018-07-18 05:21:23 +02:00
<button type="button" class="btn btn-primary" (click)="regenerate()">
2018-06-21 00:16:20 +02:00
{{'regeneratePassword' | i18n}}
</button>
2018-07-18 05:21:23 +02:00
<button type="button" class="btn btn-outline-secondary" (click)="copy()">
2018-06-21 00:16:20 +02:00
{{'copyPassword' | i18n}}
</button>
</div>
<div class="ml-auto">
2019-02-21 22:50:37 +01:00
<button type="button" class="btn btn-outline-secondary" (click)="history()"
title="{{'passwordHistory' | i18n}}">
2018-06-21 04:12:54 +02:00
<i class="fa fa-clock-o fa-lg"></i>
2018-06-21 00:16:20 +02:00
</button>
</div>
</div>
<ng-template #historyTemplate></ng-template>