Skip to content

Instantly share code, notes, and snippets.

@ozgurrgul
Created July 21, 2018 19:35
Show Gist options
  • Save ozgurrgul/0c2baf7b6ff39e6d4aa68fe525dd6edc to your computer and use it in GitHub Desktop.
Save ozgurrgul/0c2baf7b6ff39e6d4aa68fe525dd6edc to your computer and use it in GitHub Desktop.
<div class="card mt-5" style="margin:auto;width: 600px;">
<div class="card-body">
<h5 class="card-title">Login</h5>
<div class="form-group">
<label for="email">Email</label>
<input type="text" class="form-control" id="email" placeholder="Email Address" [(ngModel)]="email">
</div>
<div class="form-group">
<label for="email">Password</label>
<input type="password" class="form-control" id="password" placeholder="Password" [(ngModel)]="password">
</div>
<button type="submit" class="btn btn-primary" (click)="tryLogin()">Login</button>
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment