Guest User

Untitled

a guest
Jul 21st, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. <div class="card mt-5" style="margin:auto;width: 600px;">
  2. <div class="card-body">
  3. <h5 class="card-title">Login</h5>
  4. <div class="form-group">
  5. <label for="email">Email</label>
  6. <input type="text" class="form-control" id="email" placeholder="Email Address" [(ngModel)]="email">
  7. </div>
  8. <div class="form-group">
  9. <label for="email">Password</label>
  10. <input type="password" class="form-control" id="password" placeholder="Password" [(ngModel)]="password">
  11. </div>
  12. <button type="submit" class="btn btn-primary" (click)="tryLogin()">Login</button>
  13. </div>
  14. </div>
Add Comment
Please, Sign In to add comment