Skip to content

Commit

Permalink
Step 5.15: Add verification component view
Browse files Browse the repository at this point in the history
  • Loading branch information
dotansimha authored and DAB0mB committed Feb 26, 2017
1 parent 5928e72 commit 7f6344c
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions src/pages/verification/verification.html
@@ -0,0 +1,25 @@
<ion-header>
<ion-navbar color="whatsapp">
<ion-title>Verification</ion-title>

<ion-buttons end>
<button ion-button class="verify-button" (click)="verify()">Verify</button>
</ion-buttons>
</ion-navbar>
</ion-header>

<ion-content padding class="verification-page-content">
<div class="instructions">
<div>
An SMS message with the verification code has been sent to {{phone}}.
</div>
<br>
<div>
To proceed, please enter the 4-digit verification code below.
</div>
</div>

<ion-item>
<ion-input [(ngModel)]="code" (keypress)="onInputKeypress($event)" type="tel" placeholder="Your verification code"></ion-input>
</ion-item>
</ion-content>

0 comments on commit 7f6344c

Please sign in to comment.