Skip to content

Commit

Permalink
Step 5.14: Create a template
Browse files Browse the repository at this point in the history
  • Loading branch information
kamilkisiela authored and dotansimha committed Nov 27, 2016
1 parent 437dc7a commit abbb96c
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions client/imports/pages/auth/verification.component.html
@@ -0,0 +1,25 @@
<ion-header>
<ion-navbar 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 abbb96c

Please sign in to comment.