Skip to content

Commit 0bf04a8

Browse files
dotansimhadarkbasic
authored andcommitted
Step 7.12: Add login template
1 parent e554d52 commit 0bf04a8

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

src/pages/login/login.html

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>Login</ion-title>
4+
5+
<ion-buttons end>
6+
<button ion-button class="done-button" (click)="login()">Done</button>
7+
</ion-buttons>
8+
</ion-navbar>
9+
</ion-header>
10+
11+
<ion-content padding class="login-page-content">
12+
<div class="instructions">
13+
<div>
14+
Please enter your phone number including its country code.
15+
</div>
16+
<br>
17+
<div>
18+
The messenger will send a one time SMS message to verify your phone number. Carrier SMS charges may apply.
19+
</div>
20+
</div>
21+
22+
<ion-item>
23+
<ion-input [(ngModel)]="phone" (keypress)="onInputKeypress($event)" type="tel" placeholder="Your phone number"></ion-input>
24+
</ion-item>
25+
</ion-content>

0 commit comments

Comments
 (0)