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">
|
2022-01-27 18:21:53 +01:00
|
|
|
<i class="bwi bwi-spinner bwi-spin" title="{{ 'loading' | i18n }}" aria-hidden="true"></i>
|
2020-08-28 17:21:35 +02:00
|
|
|
{{ "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">
|
Change links to buttons, expose `aria-pressed` for toggles, add `aria-expanded` to send view's "Options" (#1437)
* Change links to buttons, expose `aria-pressed` for toggles
- also make existing `<a routerLink...>` type controls keyboard focusable with the addition of `tabindex="0"`
* Correctly set aria-pressed
now that I have a working build environment, could verify correct way to set this with my limited Angular knowledge
* Change more links to buttons, initial style changes
* Fix layout of <button> elements with .box-content-row
* Update jslib submodule
* Add `aria-expanded` to the send view's "Show options" expand/collapse control
* Fix position of "Edit" pencil when hovering over folders
* Update jslib
* Change sends list links to buttons
* Add `aria-pressed` to vault and send list buttons
Programmatically denote which of the buttons is currently active/shown in the right-most panel
* Fix incorrect "Options" expand/collapse button in add-edit view
Currently, that buttons lacks an accName because the "Options" text is outside of it.
* Add `aria-pressed` to the send left-hand column filters
* Simplify base, list, and vault styles
Since links are now buttons, no need to double up selectors for both types of elements. No need to double-up theming in base, as this also causes incorrect "x" in toasts.
* Remove unnecessary `position:relative`
Fixes issue with cut-off focus outlines, has no other adverse effect
* Fix styling for last child of action buttons
Old approach of making right padding smaller results in unsightly, off-center icon (noticeable when focus outline is visible). This visually remains the same, but reduces right-hand margin instead.
2022-04-30 16:09:41 +02:00
|
|
|
<button
|
|
|
|
type="button"
|
2020-08-28 17:21:35 +02:00
|
|
|
class="row-btn"
|
|
|
|
appStopClick
|
|
|
|
appA11yTitle="{{ 'toggleVisibility' | i18n }}"
|
2022-03-27 22:42:47 +02:00
|
|
|
[attr.aria-pressed]="showPassword"
|
2020-08-28 17:21:35 +02:00
|
|
|
(click)="togglePassword(false)"
|
|
|
|
>
|
|
|
|
<i
|
2022-01-27 18:21:53 +01:00
|
|
|
class="bwi bwi-lg"
|
2020-08-28 17:21:35 +02:00
|
|
|
aria-hidden="true"
|
2022-01-27 18:21:53 +01:00
|
|
|
[ngClass]="{ 'bwi-eye': !showPassword, 'bwi-eye-slash': showPassword }"
|
2020-08-28 17:21:35 +02:00
|
|
|
></i>
|
Change links to buttons, expose `aria-pressed` for toggles, add `aria-expanded` to send view's "Options" (#1437)
* Change links to buttons, expose `aria-pressed` for toggles
- also make existing `<a routerLink...>` type controls keyboard focusable with the addition of `tabindex="0"`
* Correctly set aria-pressed
now that I have a working build environment, could verify correct way to set this with my limited Angular knowledge
* Change more links to buttons, initial style changes
* Fix layout of <button> elements with .box-content-row
* Update jslib submodule
* Add `aria-expanded` to the send view's "Show options" expand/collapse control
* Fix position of "Edit" pencil when hovering over folders
* Update jslib
* Change sends list links to buttons
* Add `aria-pressed` to vault and send list buttons
Programmatically denote which of the buttons is currently active/shown in the right-most panel
* Fix incorrect "Options" expand/collapse button in add-edit view
Currently, that buttons lacks an accName because the "Options" text is outside of it.
* Add `aria-pressed` to the send left-hand column filters
* Simplify base, list, and vault styles
Since links are now buttons, no need to double up selectors for both types of elements. No need to double-up theming in base, as this also causes incorrect "x" in toasts.
* Remove unnecessary `position:relative`
Fixes issue with cut-off focus outlines, has no other adverse effect
* Fix styling for last child of action buttons
Old approach of making right padding smaller results in unsightly, off-center icon (noticeable when focus outline is visible). This visually remains the same, but reduces right-hand margin instead.
2022-04-30 16:09:41 +02:00
|
|
|
</button>
|
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">
|
Change links to buttons, expose `aria-pressed` for toggles, add `aria-expanded` to send view's "Options" (#1437)
* Change links to buttons, expose `aria-pressed` for toggles
- also make existing `<a routerLink...>` type controls keyboard focusable with the addition of `tabindex="0"`
* Correctly set aria-pressed
now that I have a working build environment, could verify correct way to set this with my limited Angular knowledge
* Change more links to buttons, initial style changes
* Fix layout of <button> elements with .box-content-row
* Update jslib submodule
* Add `aria-expanded` to the send view's "Show options" expand/collapse control
* Fix position of "Edit" pencil when hovering over folders
* Update jslib
* Change sends list links to buttons
* Add `aria-pressed` to vault and send list buttons
Programmatically denote which of the buttons is currently active/shown in the right-most panel
* Fix incorrect "Options" expand/collapse button in add-edit view
Currently, that buttons lacks an accName because the "Options" text is outside of it.
* Add `aria-pressed` to the send left-hand column filters
* Simplify base, list, and vault styles
Since links are now buttons, no need to double up selectors for both types of elements. No need to double-up theming in base, as this also causes incorrect "x" in toasts.
* Remove unnecessary `position:relative`
Fixes issue with cut-off focus outlines, has no other adverse effect
* Fix styling for last child of action buttons
Old approach of making right padding smaller results in unsightly, off-center icon (noticeable when focus outline is visible). This visually remains the same, but reduces right-hand margin instead.
2022-04-30 16:09:41 +02:00
|
|
|
<button
|
|
|
|
type="button"
|
2020-08-28 17:21:35 +02:00
|
|
|
class="row-btn"
|
|
|
|
appStopClick
|
|
|
|
appA11yTitle="{{ 'toggleVisibility' | i18n }}"
|
2022-03-27 22:42:47 +02:00
|
|
|
[attr.aria-pressed]="showPassword"
|
2020-08-28 17:21:35 +02:00
|
|
|
(click)="togglePassword(true)"
|
2021-12-20 15:47:17 +01:00
|
|
|
>
|
2020-08-28 17:21:35 +02:00
|
|
|
<i
|
2022-01-27 18:21:53 +01:00
|
|
|
class="bwi bwi-lg"
|
2020-08-28 17:21:35 +02:00
|
|
|
aria-hidden="true"
|
2022-01-27 18:21:53 +01:00
|
|
|
[ngClass]="{ 'bwi-eye': !showPassword, 'bwi-eye-slash': showPassword }"
|
2020-08-28 17:21:35 +02:00
|
|
|
></i>
|
Change links to buttons, expose `aria-pressed` for toggles, add `aria-expanded` to send view's "Options" (#1437)
* Change links to buttons, expose `aria-pressed` for toggles
- also make existing `<a routerLink...>` type controls keyboard focusable with the addition of `tabindex="0"`
* Correctly set aria-pressed
now that I have a working build environment, could verify correct way to set this with my limited Angular knowledge
* Change more links to buttons, initial style changes
* Fix layout of <button> elements with .box-content-row
* Update jslib submodule
* Add `aria-expanded` to the send view's "Show options" expand/collapse control
* Fix position of "Edit" pencil when hovering over folders
* Update jslib
* Change sends list links to buttons
* Add `aria-pressed` to vault and send list buttons
Programmatically denote which of the buttons is currently active/shown in the right-most panel
* Fix incorrect "Options" expand/collapse button in add-edit view
Currently, that buttons lacks an accName because the "Options" text is outside of it.
* Add `aria-pressed` to the send left-hand column filters
* Simplify base, list, and vault styles
Since links are now buttons, no need to double up selectors for both types of elements. No need to double-up theming in base, as this also causes incorrect "x" in toasts.
* Remove unnecessary `position:relative`
Fixes issue with cut-off focus outlines, has no other adverse effect
* Fix styling for last child of action buttons
Old approach of making right padding smaller results in unsightly, off-center icon (noticeable when focus outline is visible). This visually remains the same, but reduces right-hand margin instead.
2022-04-30 16:09:41 +02:00
|
|
|
</button>
|
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"
|
2022-01-27 18:21:53 +01:00
|
|
|
class="bwi bwi-spinner bwi-spin"
|
2020-08-28 17:21:35 +02:00
|
|
|
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>
|
2022-07-25 12:43:10 +02:00
|
|
|
<button type="button" class="btn block" (click)="logOut()">
|
2020-08-28 17:21:35 +02:00
|
|
|
<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>
|