Advertisement
Guest User

Untitled

a guest
Dec 8th, 2016
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.82 KB | None | 0 0
  1. <ion-view view-title="Profile">
  2. <ion-content>
  3. <button class="button button-full button-assertive" ng-click="logout()">Logout</button>
  4.  
  5. <ion-refresher on-refresh="doRefresh()"></ion-refresher>
  6.  
  7. <div class="list card text-center">
  8. <div class="item item-profile">
  9. <img ng-src="{{profileData.picture.data.url}}">
  10. <h2>{{profileData.name}} ({{profileData.relationship_status}})</h2>
  11. <p>{{profileData.id}}</p>
  12. <p>{{profileData.location.name}}</p>
  13. </div>
  14. </div>
  15.  
  16. <button menu-close class="button button-full button-positive" ui-sref="app.feed">My Feed</button>
  17. <button menu-close class="button button-full button-balanced" ui-sref="app.photos">My Photos</button>
  18. </ion-content>
  19. </ion-view>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement