source: Farmatiko/ClientApp/src/app/login/login.component.html@ de18858

Last change on this file since de18858 was 785b8bd, checked in by Mile Jankuloski <mile.jankuloski@…>, 4 years ago

Dashboards v0.1

  • Property mode set to 100644
File size: 632 bytes
Line 
1<div class="wrapper">
2<mat-card>
3<mat-card-header><h2>Најава</h2></mat-card-header>
4<mat-card-content>
5<form [formGroup]="loginForm" novalidate>
6 <div class="example-container">
7 <mat-form-field>
8 <input matInput placeholder="Email" formControlName="email">
9 </mat-form-field>
10
11 <mat-form-field>
12 <input matInput type="password" placeholder="Password" formControlName="password">
13 </mat-form-field>
14
15 <button [disabled]="!loginForm.valid" mat-raised-button color="primary" [routerLink]="['/dashboard']" mat-button>Најави се</button>
16 </div>
17</form>
18</mat-card-content>
19</mat-card>
20</div>
Note: See TracBrowser for help on using the repository browser.