2020-08-21 15:50:36 +02:00
|
|
|
<form id="set-password-page" #form>
|
|
|
|
<div class="content">
|
|
|
|
<img class="logo-image" alt="Bitwarden">
|
|
|
|
<p class="lead">{{'setMasterPassword' | i18n}}</p>
|
2020-08-28 17:21:35 +02:00
|
|
|
<div class="box text-center" *ngIf="syncLoading">
|
|
|
|
<i class="fa fa-spinner fa-spin" title="{{'loading' | i18n}}" aria-hidden="true"></i>
|
|
|
|
{{'loading' | i18n}}
|
2020-08-21 15:50:36 +02:00
|
|
|
</div>
|
2020-08-28 17:21:35 +02:00
|
|
|
<div *ngIf="!syncLoading">
|
2020-08-21 15:50:36 +02:00
|
|
|
<div class="box">
|
2020-08-28 17:21:35 +02:00
|
|
|
<app-callout type="tip">{{'ssoCompleteRegistration' | i18n}}</app-callout>
|
2021-09-07 19:11:43 +02:00
|
|
|
<app-callout type="warning" title="{{'resetPasswordPolicyAutoEnroll' | i18n}}"
|
|
|
|
*ngIf="resetPassswordAutoEnroll">
|
|
|
|
{{'resetPasswordAutoEnrollInviteWarning' | i18n}}
|
|
|
|
</app-callout>
|
2021-08-28 00:04:32 +02:00
|
|
|
<app-callout type="info" [enforcedPolicyOptions]="enforcedPolicyOptions" *ngIf="enforcedPolicyOptions">
|
2020-08-28 17:21:35 +02:00
|
|
|
</app-callout>
|
|
|
|
</div>
|
|
|
|
<form #form (ngSubmit)="submit()" [appApiAction]="formPromise" ngNativeValidate autocomplete="off">
|
|
|
|
<div class="box">
|
|
|
|
<div class="box-content">
|
|
|
|
<div class="box-content-row" appBoxRow>
|
|
|
|
<div class="box-content-row-flex">
|
|
|
|
<div class="row-main">
|
|
|
|
<label for="masterPassword">{{'masterPass' | i18n}}
|
|
|
|
<strong class="sub-label text-{{masterPasswordScoreColor}}"
|
|
|
|
*ngIf="masterPasswordScoreText">
|
|
|
|
{{masterPasswordScoreText}}
|
|
|
|
</strong>
|
|
|
|
</label>
|
|
|
|
<input id="masterPassword" type="{{showPassword ? 'text' : 'password'}}"
|
|
|
|
name="MasterPassword" class="monospaced" [(ngModel)]="masterPassword" required
|
|
|
|
(input)="updatePasswordStrength()" appInputVerbatim>
|
|
|
|
</div>
|
|
|
|
<div class="action-buttons">
|
|
|
|
<a class="row-btn" href="#" appStopClick appBlurClick role="button"
|
|
|
|
appA11yTitle="{{'toggleVisibility' | i18n}}" (click)="togglePassword(false)">
|
|
|
|
<i class="fa fa-lg" aria-hidden="true"
|
|
|
|
[ngClass]="{'fa-eye': !showPassword, 'fa-eye-slash': showPassword}"></i>
|
|
|
|
</a>
|
|
|
|
</div>
|
2020-08-21 15:50:36 +02:00
|
|
|
</div>
|
2020-08-28 17:21:35 +02:00
|
|
|
<div class="progress">
|
|
|
|
<div class="progress-bar bg-{{masterPasswordScoreColor}}" role="progressbar"
|
|
|
|
aria-valuenow="0" aria-valuemin="0" aria-valuemax="100"
|
|
|
|
[ngStyle]="{width: (masterPasswordScoreWidth + '%')}"
|
|
|
|
attr.aria-valuenow="{{masterPasswordScoreWidth}}">
|
|
|
|
</div>
|
2020-08-21 15:50:36 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2020-08-28 17:21:35 +02:00
|
|
|
<div class="box-footer">
|
|
|
|
{{'masterPassDesc' | i18n}}
|
|
|
|
</div>
|
2020-08-21 15:50:36 +02:00
|
|
|
</div>
|
2020-08-28 17:21:35 +02:00
|
|
|
<div class="box">
|
|
|
|
<div class="box-content">
|
|
|
|
<div class="box-content-row" appBoxRow>
|
|
|
|
<div class="box-content-row-flex">
|
|
|
|
<div class="row-main">
|
|
|
|
<label for="masterPasswordRetype">{{'reTypeMasterPass' | i18n}}</label>
|
|
|
|
<input id="masterPasswordRetype" type="password" name="MasterPasswordRetype"
|
|
|
|
class="monospaced" [(ngModel)]="masterPasswordRetype" required appInputVerbatim
|
|
|
|
autocomplete="new-password">
|
|
|
|
</div>
|
|
|
|
<div class="action-buttons">
|
|
|
|
<a class="row-btn" href="#" appStopClick appBlurClick role="button"
|
|
|
|
appA11yTitle="{{'toggleVisibility' | i18n}}" (click)="togglePassword(true)">
|
|
|
|
<i class="fa fa-lg" aria-hidden="true"
|
|
|
|
[ngClass]="{'fa-eye': !showPassword, 'fa-eye-slash': showPassword}"></i>
|
|
|
|
</a>
|
|
|
|
</div>
|
2020-08-21 15:50:36 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2020-08-28 17:21:35 +02:00
|
|
|
<div class="box last">
|
|
|
|
<div class="box-content">
|
|
|
|
<div class="box-content-row" appBoxRow>
|
|
|
|
<label for="hint">{{'masterPassHint' | i18n}}</label>
|
|
|
|
<input id="hint" type="text" name="Hint" [(ngModel)]="hint">
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="box-footer">
|
|
|
|
{{'masterPassHintDesc' | i18n}}
|
2020-08-21 15:50:36 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
2020-08-28 17:21:35 +02:00
|
|
|
<div class="buttons">
|
|
|
|
<button type="submit" class="btn primary block" [disabled]="form.loading">
|
|
|
|
<i *ngIf="form.loading" class="fa fa-spinner fa-spin" title="{{'loading' | i18n}}"
|
|
|
|
aria-hidden="true"></i>
|
|
|
|
<span>{{'submit' | i18n}}</span>
|
|
|
|
</button>
|
|
|
|
<button class="btn block" (click)="logOut()">
|
|
|
|
<span>{{'logOut' | i18n}}</span>
|
|
|
|
</button>
|
2020-08-21 15:50:36 +02:00
|
|
|
</div>
|
2020-08-28 17:21:35 +02:00
|
|
|
</form>
|
|
|
|
</div>
|
2020-08-21 15:50:36 +02:00
|
|
|
</div>
|
|
|
|
</form>
|