Created
June 14, 2017 14:01
-
-
Save samverneck/231d4498aa2271970d8c8c6451a6ea0b to your computer and use it in GitHub Desktop.
This file contains hidden or 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
<form (submit)="$event.preventDefault()"> | |
<div class="form-group"> | |
<label for="email">EMAIL:</label> | |
<input [(ngModel)]="usuario.email" type="email" id="email" class="form-control"> | |
</div> | |
<div class="form-group"> | |
<label for="senha">SENHA:</label> | |
<input [(ngModel)]="usuario.senha" type="password" id="senha" class="form-control"> | |
</div> | |
<button class="btn waves-effect waves-light" | |
type="submit" name="action" (click)="fazerLogin()"> | |
LOGIN | |
<i class="fa fa-paper-plane" aria-hidden="true"></i> | |
</button> | |
</form> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
ERRO