5 lines
264 B
HTML
5 lines
264 B
HTML
<form class="content" [formGroup]="form" (ngSubmit)="login()">
|
|
<input type="text" formControlName="username" placeholder="Username">
|
|
<input type="password" formControlName="password" placeholder="Password">
|
|
<button type="submit">Log in</button>
|
|
</form> |