Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Step 5.10: Create login component view
  • Loading branch information
dotansimha authored and DAB0mB committed Feb 26, 2017
1 parent 882d00e commit a30d16f
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions src/pages/auth/login.html
@@ -0,0 +1,25 @@
<ion-header>
<ion-navbar color="whatsapp">
<ion-title>Login</ion-title>

<ion-buttons end>
<button ion-button class="done-button" (click)="login()">Done</button>
</ion-buttons>
</ion-navbar>
</ion-header>

<ion-content padding class="login-page-content">
<div class="instructions">
<div>
Please enter your phone number including its country code.
</div>
<br>
<div>
The messenger will send a one time SMS message to verify your phone number. Carrier SMS charges may apply.
</div>
</div>

<ion-item>
<ion-input [(ngModel)]="phone" (keypress)="onInputKeypress($event)" type="tel" placeholder="Your phone number"></ion-input>
</ion-item>
</ion-content>

0 comments on commit a30d16f

Please sign in to comment.