We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9ab3818 commit 0bf14cdCopy full SHA for 0bf14cd
src/pages/verification/verification.html
@@ -0,0 +1,25 @@
1
+<ion-header>
2
+ <ion-navbar color="whatsapp">
3
+ <ion-title>Verification</ion-title>
4
+
5
+ <ion-buttons end>
6
+ <button ion-button class="verify-button" (click)="verify()">Verify</button>
7
+ </ion-buttons>
8
+ </ion-navbar>
9
+</ion-header>
10
11
+<ion-content padding class="verification-page-content">
12
+ <div class="instructions">
13
+ <div>
14
+ An SMS message with the verification code has been sent to {{phone}}.
15
+ </div>
16
+ <br>
17
18
+ To proceed, please enter the 4-digit verification code below.
19
20
21
22
+ <ion-item>
23
+ <ion-input [(ngModel)]="code" (keypress)="onInputKeypress($event)" type="tel" placeholder="Your verification code"></ion-input>
24
+ </ion-item>
25
+</ion-content>
0 commit comments