Skip to content

Instantly share code, notes, and snippets.

View andriyshevchenko's full-sized avatar
👨‍🎓

Andriy andriyshevchenko

👨‍🎓
View GitHub Profile
@andriyshevchenko
andriyshevchenko / login.component.html
Last active March 7, 2019 22:14
Example Angular login component
<div>
<h1>Welcome to e-folio <!--Or whatsoever--> </h1>
<form [formGroup]="signupForm" (ngSubmit)="onSubmit()">
<input formControlName="email"
type="email"
id="email"
placeholder="email@gmail.com"/>
<input formControlName="password"
id="password"
type="password" />