2021-08-11 21:49:44 +02:00
|
|
|
<form id="update-temp-password-page" #form (ngSubmit)="submit()" [appApiAction]="formPromise">
|
|
|
|
<div class="content">
|
|
|
|
<app-callout type="warning" title="{{'updateMasterPassword' | i18n}}">
|
|
|
|
{{'updateMasterPasswordWarning' | i18n}}
|
|
|
|
</app-callout>
|
2021-08-28 00:04:32 +02:00
|
|
|
<app-callout type="info" [enforcedPolicyOptions]="enforcedPolicyOptions" *ngIf="enforcedPolicyOptions">
|
|
|
|
</app-callout>
|
2021-08-11 21:49:44 +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-{{masterPasswordScoreStyle.Color}}"
|
|
|
|
*ngIf="masterPasswordScoreStyle.Text">
|
|
|
|
{{masterPasswordScoreStyle.Text}}
|
|
|
|
</strong>
|
|
|
|
</label>
|
|
|
|
<input id="masterPassword" type="{{showPassword ? 'text' : 'password'}}"
|
|
|
|
name="MasterPassword" class="monospaced" [(ngModel)]="masterPassword" required
|
|
|
|
[appAutofocus]="masterPassword === ''" (input)="updatePasswordStrength()">
|
|
|
|
</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>
|
|
|
|
</div>
|
|
|
|
<div class="progress">
|
2021-08-28 00:04:32 +02:00
|
|
|
<div class="progress-bar bg-{{masterPasswordScoreStyle.Color}}" role="progressbar"
|
|
|
|
aria-valuenow="0" aria-valuemin="0" aria-valuemax="100"
|
|
|
|
[ngStyle]="{width: (masterPasswordScoreStyle.Width + '%')}"
|
2021-08-11 21:49:44 +02:00
|
|
|
attr.aria-valuenow="{{masterPasswordScoreStyle.Width}}"></div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="box">
|
|
|
|
<div class="box-content">
|
|
|
|
<div class="box-content-row box-content-row-flex" appBoxRow>
|
|
|
|
<div class="row-main">
|
|
|
|
<label for="masterPasswordRetype">{{'reTypeMasterPass' | i18n}}</label>
|
|
|
|
<input id="masterPasswordRetype" type="{{showPassword ? 'text' : 'password'}}"
|
|
|
|
name="MasterPasswordRetype" class="monospaced" [(ngModel)]="masterPasswordRetype" required>
|
|
|
|
</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>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="box">
|
|
|
|
<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}}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="buttons">
|
|
|
|
<button type="submit" class="btn primary block" [disabled]="form.loading" appBlurClick>
|
|
|
|
<b [hidden]="form.loading">{{'submit' | i18n}}</b>
|
|
|
|
<i class="fa fa-spinner fa-spin" [hidden]="!form.loading" aria-hidden="true"></i>
|
|
|
|
</button>
|
|
|
|
<a (click)="logOut()" class="btn block">{{'logOut' | i18n}}</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</form>
|