Skip to content

Instantly share code, notes, and snippets.

@jayserdny
Created January 9, 2018 09:56
Show Gist options
  • Save jayserdny/af695587a2e17e3deab12eb42660e60f to your computer and use it in GitHub Desktop.
Save jayserdny/af695587a2e17e3deab12eb42660e60f to your computer and use it in GitHub Desktop.
Login.html for steemit tutorial
<ion-header>
<ion-navbar>
<ion-title>login</ion-title>
</ion-navbar>
</ion-header>
<ion-content padding>
<ion-grid>
<ion-row>
<ion-col col-12>
<ion-input type="text"
placeholder="Username or email"
[(ngModel)]="email"></ion-input>
</ion-col>
<ion-col col-12>
<ion-input type="password"
placeholder="Password"
[(ngModel)]="password"></ion-input>
</ion-col>
<ion-col col-12>
<button ion-button block round (tap)="login()">
Login
</button>
</ion-col>
</ion-row>
</ion-grid>
</ion-content>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment