feat: add hotel form and test components with routing

This commit is contained in:
Jan K9f 2024-11-19 11:32:02 +01:00
commit 0a0378e1c4
Signed by: jank
GPG key ID: B267751B8AE29EFE
12 changed files with 155 additions and 5 deletions

View file

@ -0,0 +1,10 @@
<p>test works!</p>
<form [formGroup]="loginForm">
<label for="username">Username</label>
<input type="text" id="username" autocomplete="username" formControlName="username">
<label for="password">Password</label>
<input type="password" id="password" formControlName="password">
<button (click)="submit()" type="submit">Login</button>
<button type="reset" (click)="reset()">Reset</button>
</form>