89 lines
4.1 KiB
HTML
89 lines
4.1 KiB
HTML
<form [formGroup]="passwordForm" (ngSubmit)="changePassword()" #passwordFormDirective="ngForm">
|
|
<mat-card>
|
|
<mat-card-content>
|
|
<h2>{{'password.change' | i18n}}</h2>
|
|
<mat-form-field>
|
|
<mat-label>{{'password.current' | i18n}}</mat-label>
|
|
<input matInput type="password" formControlName="oldPassword" [(ngModel)]="model.old">
|
|
<mat-error *ngFor="let error of passwordForm.get('oldPassword').errors | keyvalue">
|
|
{{error.key}}
|
|
</mat-error>
|
|
<mat-hint *ngIf="success">
|
|
{{'password.changed' | i18n}}
|
|
</mat-hint>
|
|
</mat-form-field>
|
|
<mat-form-field>
|
|
<mat-label>{{'password' | i18n}}</mat-label>
|
|
<input matInput type="password" formControlName="password" [(ngModel)]="model.password">
|
|
<mat-error *ngFor="let error of passwordForm.get('password').errors | keyvalue">
|
|
{{error.key}}
|
|
</mat-error>
|
|
</mat-form-field>
|
|
<mat-form-field>
|
|
<mat-label>{{'password.confirm' | i18n}}</mat-label>
|
|
<input matInput type="password" formControlName="password2" [(ngModel)]="model.password2">
|
|
<mat-error>
|
|
{{'password.not-match' | i18n}}
|
|
</mat-error>
|
|
</mat-form-field>
|
|
</mat-card-content>
|
|
<mat-card-actions>
|
|
<mat-progress-bar *ngIf="working" mode="indeterminate"></mat-progress-bar>
|
|
<button type="submit" *ngIf="!working" mat-raised-button color="primary" [disabled]="passwordForm.invalid">
|
|
{{'password.change' | i18n}}
|
|
</button>
|
|
</mat-card-actions>
|
|
</mat-card>
|
|
</form>
|
|
|
|
<form [formGroup]="statusForm" (ngSubmit)="changeStatus()" #statusFormDirective="ngForm">
|
|
<mat-card>
|
|
<mat-card-content>
|
|
<h2>{{'security.status' | i18n}}</h2>
|
|
<p> {{'security.status.hint' | i18n}}</p>
|
|
<mat-form-field>
|
|
<mat-label>{{'security.status' | i18n}}</mat-label>
|
|
<mat-select [(ngModel)]="model.status" formControlName="status">
|
|
<mat-option *ngFor="let status of statuses" [value]="status">
|
|
{{'security.status.' + status | i18n}}
|
|
</mat-option>
|
|
</mat-select>
|
|
<mat-hint *ngIf="successStatus">
|
|
{{'security.status.success' | i18n}}
|
|
</mat-hint>
|
|
</mat-form-field>
|
|
<mat-label>{{'security.status.' + model.status + '.hint' | i18n}}</mat-label>
|
|
</mat-card-content>
|
|
<mat-card-actions>
|
|
<mat-progress-bar *ngIf="working" mode="indeterminate"></mat-progress-bar>
|
|
<button type="submit" *ngIf="!working" mat-raised-button color="primary" [disabled]="statusForm.invalid">
|
|
{{'security.status.change' | i18n}}
|
|
</button>
|
|
</mat-card-actions>
|
|
<mat-card-footer>
|
|
<a href="https://wiki.bstly.de/services/webstly#status" class="help-button"
|
|
matTooltip="{{'help-button' | i18n}}" matTooltipPosition="above" target="_blank" mat-fab color="accent">
|
|
<mat-icon>contact_support</mat-icon>
|
|
</a>
|
|
</mat-card-footer>
|
|
</mat-card>
|
|
</form>
|
|
|
|
<mat-card>
|
|
<mat-card-content>
|
|
<h2>{{'security.2fa' | i18n}}</h2>
|
|
<p>{{'security.2fa.info' | i18n}}</p>
|
|
</mat-card-content>
|
|
<mat-card-actions>
|
|
<a *ngIf="!totp" (click)="createTotp()" mat-raised-button color="accent">{{'security.2fa.totp.create' |
|
|
i18n}}</a>
|
|
<a *ngIf="totp" (click)="removeTotp()" mat-raised-button color="warn">{{'security.2fa.totp.remove' |
|
|
i18n}}</a>
|
|
</mat-card-actions>
|
|
<mat-card-footer>
|
|
<a href="https://wiki.bstly.de/services/webstly#2fa" class="help-button" matTooltip="{{'help-button' | i18n}}"
|
|
matTooltipPosition="above" target="_blank" mat-fab color="accent">
|
|
<mat-icon>contact_support</mat-icon>
|
|
</a>
|
|
</mat-card-footer>
|
|
</mat-card> |