Skip to content

Instantly share code, notes, and snippets.

@adash333
Created June 8, 2018 12:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save adash333/4db08317c3cc254ed8ea1bbe9f20ba8b to your computer and use it in GitHub Desktop.
Save adash333/4db08317c3cc254ed8ea1bbe9f20ba8b to your computer and use it in GitHub Desktop.
<ion-header>
<ion-navbar>
<ion-title>Demo</ion-title>
</ion-navbar>
</ion-header>
<ion-content padding>
<img class="logo" src="assets/imgs/logo.png" alt="Ionic Framework logo">
<div class="login">
<h1>Welcome</h1>
<p>Please log in to access the Demo.</p>
<form [formGroup]="form" (ngSubmit)="logIn()">
<ion-list>
<ion-item margin-bottom>
<ion-label>Your E-mail Address</ion-label>
<ion-input type="email" formControlName="email"></ion-input>
</ion-item>
<ion-item margin-bottom>
<ion-label>Your Password</ion-label>
<ion-input type="password" formControlName="password"></ion-input>
</ion-item>
<button ion-button color="primary" text-center block [disabled]="!form.valid">Log In</button>
</ion-list>
</form>
</div>
</ion-content>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment