Advertisement
Guest User

Untitled

a guest
Apr 24th, 2019
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.28 KB | None | 0 0
  1. <div class="max-height">
  2. <div fxLayout="column" fxLayoutAlign="center center" class="max-height">
  3. <mat-card class="login-card">
  4. <div fxLayout="column" fxLayoutAlign="space-evenly none">
  5. <div fxFlex="100" fxLayout="row" fxLayoutAlign="center none">
  6. <div class="avatar-img">
  7. <img src="../../../assets/img/avatar.svg" alt="avatar">
  8. </div>
  9. </div>
  10. <form [formGroup]="loginForm">
  11. <div class="card-div">
  12. <mat-form-field fxFlex="100" for>
  13. <input matInput placeholder="Email ID" formControlName="email">
  14. </mat-form-field>
  15. </div>
  16. <div class="card-div">
  17. <mat-form-field fxFlex="100">
  18. <input matInput placeholder="Password" formControlName="password">
  19. </mat-form-field>
  20. </div>
  21. <div fxLayout="row" fxLayoutAlign="end none">
  22. <button mat-raised-button color="primary" (click)="login()">Signin</button>
  23. </div>
  24. </form>
  25. </div>
  26. </mat-card>
  27. </div>
  28. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement