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 }}"
|
2021-09-17 06:09:23 +02:00
|
|
|
*ngIf="resetPasswordAutoEnroll"
|
|
|
|
>
|
2021-09-07 19:11:43 +02:00
|
|
|
{{ "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"
|
2021-12-20 15:47:17 +01:00
|
|
|
>
|
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="masterPassword"
|
|
|
|
>{{ "masterPass" | i18n }}
|
|
|
|
<strong
|
|
|
|
class="sub-label text-{{ masterPasswordScoreColor }}"
|
|
|
|
*ngIf="masterPasswordScoreText"
|
|
|
|
>
|
|
|
|
{{ masterPasswordScoreText }}
|
|
|
|
</strong>
|
2021-12-20 15:47:17 +01:00
|
|
|
</label>
|
|
|
|
<input
|
2020-08-28 17:21:35 +02:00
|
|
|
id="masterPassword"
|
|
|
|
type="{{ showPassword ? 'text' : 'password' }}"
|
|
|
|
name="MasterPassword"
|
|
|
|
class="monospaced"
|
|
|
|
[(ngModel)]="masterPassword"
|
2021-12-20 15:47:17 +01:00
|
|
|
required
|
2020-08-28 17:21:35 +02:00
|
|
|
(input)="updatePasswordStrength()"
|
|
|
|
appInputVerbatim
|
|
|
|
/>
|
2020-08-21 15:50:36 +02:00
|
|
|
</div>
|
2020-08-28 17:21:35 +02:00
|
|
|
<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>
|
2020-08-21 15:50:36 +02:00
|
|
|
</div>
|
2021-12-20 15:47:17 +01:00
|
|
|
</div>
|
2020-08-28 17:21:35 +02:00
|
|
|
<div class="progress">
|
2021-12-20 15:47:17 +01:00
|
|
|
<div
|
2020-08-28 17:21:35 +02:00
|
|
|
class="progress-bar bg-{{ masterPasswordScoreColor }}"
|
|
|
|
role="progressbar"
|
|
|
|
aria-valuenow="0"
|
|
|
|
aria-valuemin="0"
|
|
|
|
aria-valuemax="100"
|
|
|
|
[ngStyle]="{ width: masterPasswordScoreWidth + '%' }"
|
|
|
|
attr.aria-valuenow="{{ masterPasswordScoreWidth }}"
|
2021-12-20 15:47:17 +01:00
|
|
|
></div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2020-08-28 17:21:35 +02:00
|
|
|
<div class="box-footer">
|
|
|
|
{{ "masterPassDesc" | i18n }}
|
2021-12-20 15:47:17 +01:00
|
|
|
</div>
|
|
|
|
</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"
|
2021-12-20 15:47:17 +01:00
|
|
|
required
|
2020-08-28 17:21:35 +02:00
|
|
|
appInputVerbatim
|
|
|
|
autocomplete="new-password"
|
2020-08-21 15:50:36 +02:00
|
|
|
/>
|
|
|
|
</div>
|
2020-08-28 17:21:35 +02:00
|
|
|
<div class="action-buttons">
|
|
|
|
<a
|
|
|
|
class="row-btn"
|
|
|
|
href="#"
|
|
|
|
appStopClick
|
|
|
|
appBlurClick
|
|
|
|
role="button"
|
|
|
|
appA11yTitle="{{ 'toggleVisibility' | i18n }}"
|
|
|
|
(click)="togglePassword(true)"
|
2021-12-20 15:47:17 +01:00
|
|
|
>
|
2020-08-28 17:21:35 +02:00
|
|
|
<i
|
|
|
|
class="fa fa-lg"
|
|
|
|
aria-hidden="true"
|
|
|
|
[ngClass]="{ 'fa-eye': !showPassword, 'fa-eye-slash': showPassword }"
|
|
|
|
></i>
|
|
|
|
</a>
|
2020-08-21 15:50:36 +02:00
|
|
|
</div>
|
2021-12-20 15:47:17 +01: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" />
|
2021-12-20 15:47:17 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
2020-08-28 17:21:35 +02:00
|
|
|
<div class="box-footer">
|
|
|
|
{{ "masterPassHintDesc" | i18n }}
|
2021-12-20 15:47:17 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
2020-08-28 17:21:35 +02:00
|
|
|
<div class="buttons">
|
|
|
|
<button type="submit" class="btn primary block" [disabled]="form.loading">
|
2021-12-20 15:47:17 +01:00
|
|
|
<i
|
2020-08-28 17:21:35 +02:00
|
|
|
*ngIf="form.loading"
|
|
|
|
class="fa fa-spinner fa-spin"
|
|
|
|
title="{{ 'loading' | i18n }}"
|
|
|
|
aria-hidden="true"
|
2021-12-20 15:47:17 +01:00
|
|
|
></i>
|
2020-08-28 17:21:35 +02:00
|
|
|
<span>{{ "submit" | i18n }}</span>
|
|
|
|
</button>
|
|
|
|
<button class="btn block" (click)="logOut()">
|
|
|
|
<span>{{ "logOut" | i18n }}</span>
|
|
|
|
</button>
|
|
|
|
</div>
|
2021-12-20 15:47:17 +01:00
|
|
|
</form>
|
2020-08-21 15:50:36 +02:00
|
|
|
</div>
|
2021-12-20 15:47:17 +01:00
|
|
|
</div>
|
2020-08-21 15:50:36 +02:00
|
|
|
</form>
|