Last change
on this file since 28d7d35 was 28d7d35, checked in by Mile Jankuloski <mile.jankuloski@…>, 4 years ago |
Maps, geolocation api, dialogs & more
|
-
Property mode
set to
100644
|
File size:
957 bytes
|
Line | |
---|
1 | <div class="wrapper">
|
---|
2 | <mat-card>
|
---|
3 | <mat-card-header><h2>Најава
|
---|
4 | <div class="aligner">
|
---|
5 | <button mat-icon-button color="primary" [routerLink]="['/']">
|
---|
6 | Почетна <mat-icon>home</mat-icon>
|
---|
7 | </button>
|
---|
8 | </div></h2></mat-card-header>
|
---|
9 | <mat-card-content>
|
---|
10 | <form [formGroup]="loginForm" novalidate>
|
---|
11 | <div class="example-container">
|
---|
12 | <mat-form-field>
|
---|
13 | <input matInput placeholder="Email" [(ngModel)]="this.username" formControlName="username">
|
---|
14 | </mat-form-field>
|
---|
15 |
|
---|
16 | <mat-form-field>
|
---|
17 | <input matInput type="password" placeholder="Password" [(ngModel)]="this.password" formControlName="password">
|
---|
18 | </mat-form-field>
|
---|
19 |
|
---|
20 | <button [disabled]="!loginForm.valid" mat-raised-button color="primary" (click)="loginPharmacyHead()" mat-button>Најави се</button>
|
---|
21 |
|
---|
22 | <div class="checkbox mb-3 text-danger" *ngIf="loginError">
|
---|
23 | Login failed. Please try again.
|
---|
24 | </div>
|
---|
25 | </div>
|
---|
26 | </form>
|
---|
27 | </mat-card-content>
|
---|
28 | </mat-card>
|
---|
29 | </div> |
---|
Note:
See
TracBrowser
for help on using the repository browser.