clonegur/frontend/src/app/page-login/page-login.component.html
2023-06-30 13:19:21 +03:00

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>