Skip to content

Commit

Permalink
Step 5.24: Add profile component view
Browse files Browse the repository at this point in the history
  • Loading branch information
dotansimha authored and DAB0mB committed Feb 26, 2017
1 parent f960e17 commit bfb619b
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions src/pages/profile/profile.html
@@ -0,0 +1,21 @@
<ion-header>
<ion-navbar color="whatsapp">
<ion-title>Profile</ion-title>

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

<ion-content class="profile-page-content">
<div class="profile-picture">
<img [src]="profile.picture">
<ion-icon name="create"></ion-icon>
</div>

<ion-item class="profile-name">
<ion-label stacked>Name</ion-label>
<ion-input [(ngModel)]="profile.name" placeholder="Your name"></ion-input>
</ion-item>
</ion-content>

0 comments on commit bfb619b

Please sign in to comment.