Skip to content

Commit 0bf14cd

Browse files
dotansimhadarkbasic
authored andcommitted
Step 7.17: Added verification template
1 parent 9ab3818 commit 0bf14cd

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
<div>
18+
To proceed, please enter the 4-digit verification code below.
19+
</div>
20+
</div>
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

Comments
 (0)