Created
February 11, 2017 21:13
-
-
Save wharley/0867116f39139fb21f041ff9d99c40c8 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
<ion-header> | |
<ion-navbar> | |
<ion-title> | |
MY APP | |
</ion-title> | |
</ion-navbar> | |
</ion-header> | |
<ion-content padding> | |
<form> | |
<ion-list> | |
<ion-item> | |
<ion-label floating>LOGIN | |
<ion-icon name="person"></ion-icon> | |
</ion-label> | |
<ion-input type="text" [(ngModel)]="data.username"></ion-input> | |
</ion-item> | |
<ion-item> | |
<ion-label floating>SENHA | |
<ion-icon name="medical"></ion-icon> | |
</ion-label> | |
<ion-input type="password" [(ngModel)]="data.password"></ion-input> | |
</ion-item> | |
</ion-list> | |
<button ion-button full (click)="login()">ENTRAR</button> | |
</form> | |
</ion-content> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment