Update login.component.html

This commit is contained in:
piotrpekala7 2021-06-02 12:08:20 +02:00
parent e36d56ff5d
commit bac6047247

View File

@ -18,7 +18,7 @@
<mat-error *ngIf="loginForm.get('username').hasError('required')">You must enter username</mat-error>
</mat-form-field>
<mat-form-field>
<input matInput formControlName="password" placeholder="Password" />
<input matInput type="password" formControlName="password" placeholder="Password" />
<mat-error *ngIf="loginForm.get('password').hasError('required')">You must enter password</mat-error>
</mat-form-field>
</form>