You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
1.3 KiB
24 lines
1.3 KiB
5 months ago
|
<div class="background">
|
||
|
<mat-card>
|
||
|
<mat-card-title>{{ 'layouts.auth.expire.title' | translate }}</mat-card-title>
|
||
|
<mat-card-subtitle>{{ 'layouts.auth.expire.subtitle' | translate }}</mat-card-subtitle>
|
||
|
<mat-card-content>
|
||
|
<form #form autocomplete="off" [formGroup]="formGroup">
|
||
|
<mat-form-field appearance="outline" hideRequiredMarker="true">
|
||
|
<mat-label>{{ 'layouts.auth.expire.current' | translate }}</mat-label>
|
||
|
<input matInput type="password" formControlName="current" required>
|
||
|
</mat-form-field>
|
||
|
<mat-form-field appearance="outline" hideRequiredMarker="true">
|
||
|
<mat-label>{{ 'layouts.auth.expire.replacement' | translate }}</mat-label>
|
||
|
<input matInput type="password" formControlName="replacement" required>
|
||
|
</mat-form-field>
|
||
|
<mat-form-field appearance="outline" hideRequiredMarker="true">
|
||
|
<mat-label>{{ 'layouts.auth.expire.confirm' | translate }}</mat-label>
|
||
|
<input matInput type="password" formControlName="confirm" required>
|
||
|
</mat-form-field>
|
||
|
<button mat-raised-button color="primary" [loading]="loading" [disabled]="loading||formGroup.invalid" (click)="continue()">{{ 'layouts.auth.expire.continue' | translate | uppercase }}</button>
|
||
|
</form>
|
||
|
</mat-card-content>
|
||
|
</mat-card>
|
||
|
</div>
|