Created
July 21, 2018 19:35
-
-
Save ozgurrgul/0c2baf7b6ff39e6d4aa68fe525dd6edc to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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