2024-11-19 11:32:02 +01:00
|
|
|
<p>test works!</p>
|
|
|
|
|
|
|
|
<form [formGroup]="loginForm">
|
|
|
|
<label for="username">Username</label>
|
2025-01-28 08:27:37 +01:00
|
|
|
<input
|
|
|
|
type="text"
|
|
|
|
id="username"
|
|
|
|
autocomplete="username"
|
|
|
|
formControlName="username"
|
|
|
|
/>
|
2024-11-19 11:32:02 +01:00
|
|
|
<label for="password">Password</label>
|
2025-01-28 08:27:37 +01:00
|
|
|
<input type="password" id="password" formControlName="password" />
|
2024-11-19 11:32:02 +01:00
|
|
|
<button (click)="submit()" type="submit">Login</button>
|
|
|
|
<button type="reset" (click)="reset()">Reset</button>
|
|
|
|
</form>
|