Adjust labels

This commit is contained in:
Peter Rossa
2023-05-16 14:18:59 +02:00
parent 05838d3bcc
commit 11f89853bb

View File

@@ -3,7 +3,9 @@
<mat-card class="login-card">
<mat-card-content>
<form [formGroup]="loginForm" (ngSubmit)="login()">
<h2>Log In</h2>
<h2>Anmelden</h2>
<mat-form-field>
<mat-label>Username</mat-label>
<input matInput placeholder="Username" formControlName="userName" name="username" required>
@@ -11,6 +13,7 @@
Please provide a valid email address
</mat-error>
</mat-form-field>
<mat-form-field>
<mat-label>Password</mat-label>
<input matInput type="password" placeholder="Password" formControlName="userPass" name="password" required>
@@ -18,9 +21,9 @@
Please provide a valid password
</mat-error>
</mat-form-field>
<div class="button-wrapper">
<button mat-raised-button color="primary" [disabled]="!loginForm.valid">Login</button>
<div class="button-wrapper">
<button mat-raised-button color="primary" [disabled]="!loginForm.valid">weiter</button>
</div>
</form>
</mat-card-content>