Advertisement
Guest User

login.component.html

a guest
Feb 18th, 2019
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. <p>
  2. login works!
  3. </p>
  4. <div>
  5. <!-- <input name="username" type="text" value="{{username}}">
  6. <br>
  7. <input name="password" type="password" value="{{password}}">
  8. <br> -->
  9. <input name="username" type="text" [(ngModel)]="username">
  10. <br>
  11. <input name="password" type="password" [(ngModel)]="password">
  12. <br>
  13. <button (click)=handleLogin()>Login</button>
  14. </div>
  15.  
  16. <div *ngIf="invalidLogin">Error : Bad Login</div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement