|
|
@ -1,5 +1,5 @@
|
|
|
|
<div class="container">
|
|
|
|
<div class="container">
|
|
|
|
<h3 mat-dialog-title>Issue id: {{data.id}}</h3>
|
|
|
|
<h3 mat-dialog-title>Benutzer ID: {{data.id}}</h3>
|
|
|
|
|
|
|
|
|
|
|
|
<form class="mat-dialog-content" (ngSubmit)="submit" #formControl="ngForm">
|
|
|
|
<form class="mat-dialog-content" (ngSubmit)="submit" #formControl="ngForm">
|
|
|
|
|
|
|
|
|
|
|
@ -19,7 +19,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
<div class="form">
|
|
|
|
<div class="form">
|
|
|
|
<mat-form-field color="accent">
|
|
|
|
<mat-form-field color="accent">
|
|
|
|
<input matInput placeholder="Passwort" [(ngModel)]="data.password" name="password" >
|
|
|
|
<input matInput placeholder="Passwort" [(ngModel)]="data.password" name="password" [type]="hidePW ? 'password' : 'text'">
|
|
|
|
|
|
|
|
<button
|
|
|
|
|
|
|
|
mat-icon-button
|
|
|
|
|
|
|
|
matSuffix
|
|
|
|
|
|
|
|
(click)="hidePW = !hidePW"
|
|
|
|
|
|
|
|
[attr.aria-label]="'Hide password'"
|
|
|
|
|
|
|
|
[attr.aria-pressed]="hidePW"
|
|
|
|
|
|
|
|
>
|
|
|
|
|
|
|
|
<mat-icon>{{ hidePW ? "visibility_off" : "visibility" }}</mat-icon>
|
|
|
|
|
|
|
|
</button>
|
|
|
|
</mat-form-field>
|
|
|
|
</mat-form-field>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|