Re-design of login page.
This commit is contained in:
@@ -1,18 +1,23 @@
|
||||
<form [formGroup]="loginForm" (submit)="performLogin()" ngNativeValidate>
|
||||
<h1>Login</h1>
|
||||
<div>
|
||||
<mat-icon>person</mat-icon>
|
||||
<label for="email">
|
||||
Email address
|
||||
<span class="required">*</span>
|
||||
</label>
|
||||
<input type="email" formControlName="email" autocomplete="email" required />
|
||||
<input type="email" id="email" formControlName="email" autocomplete="email" required />
|
||||
</div>
|
||||
<div>
|
||||
<mat-icon>lock</mat-icon>
|
||||
<label for="password">
|
||||
Password
|
||||
<span class="required">*</span>
|
||||
</label>
|
||||
<input type="password" formControlName="password" required />
|
||||
<input type="password" id="password" formControlName="password" required />
|
||||
</div>
|
||||
<div class="actions">
|
||||
<a [routerLink]="['/home']">Create an account</a>
|
||||
<button type="submit">Send</button>
|
||||
</div>
|
||||
</form>
|
||||
Reference in New Issue
Block a user