Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Step 4.13: Add confirmation view
  • Loading branch information
DAB0mB authored and Dotan Simha committed Nov 23, 2016
1 parent 3e6d219 commit 1675437
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions client/templates/confirmation.html
@@ -0,0 +1,20 @@
<ion-view title="{{ confirmation.phone }}">
<ion-nav-buttons side="right">
<button ng-click="confirmation.confirm()" ng-disabled="!confirmation.code || confirmation.code.length === 0" class="button button-clear button-positive">Done</button>
</ion-nav-buttons>

<ion-content>
<div class="text-center padding">
We have sent you an SMS with a code to the number above
</div>
<div class="text-center padding">
To complete your phone number verification WhatsApp, please enter the 4-digit activation code.
</div>

<div class="list padding-top">
<label class="item item-input">
<input ng-model="confirmation.code" on-return="confirmation.confirm()" type="text" placeholder="Code">
</label>
</div>
</ion-content>
</ion-view>

0 comments on commit 1675437

Please sign in to comment.