Advertisement
Guest User

Untitled

a guest
Sep 21st, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. Objective: Build a user profile page using Vue or Angular
  2.  
  3. Requirements:
  4.  
  5. 1. Should list their first and last name.
  6. 2. Should list their email address.
  7. 3. Should list their phone number.
  8. 4. Should display a profile pic image of them hosted at Gravatar.com
  9. 5. Should contain a button that says "Contact Me" that will console.log the user's email address when clicked
  10.  
  11. ```
  12. const profile = {
  13. firstName: 'Coty',
  14. lastName: 'Abadie',
  15. email: 'coty@boone.io',
  16. phone: '<your phone here>',
  17. picture: '<go to gravatar.com, create an avatar for yourself, then list the url to it here>'
  18. }
  19. ```
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement