Skip to content

Instantly share code, notes, and snippets.

@wharley
Created February 11, 2017 21:13
Show Gist options
  • Save wharley/0867116f39139fb21f041ff9d99c40c8 to your computer and use it in GitHub Desktop.
Save wharley/0867116f39139fb21f041ff9d99c40c8 to your computer and use it in GitHub Desktop.
<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