feat: add hotel form and test components with routing
This commit is contained in:
parent
21eb309acc
commit
0a0378e1c4
12 changed files with 155 additions and 5 deletions
10
src/app/test/test.component.html
Normal file
10
src/app/test/test.component.html
Normal 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>
|
Reference in a new issue