Advertisement
Guest User

Untitled

a guest
Jul 28th, 2017
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.49 KB | None | 0 0
  1. <html>
  2. <head>
  3. <title>User Profile Manager</title>
  4. </head>
  5. <body>
  6.  
  7. <variable type="FaceBooklet" name="myBook" value="new FaceBooklet()"/>
  8. <h2>Profile Name</h2>
  9. <p>
  10. Please Enter a Name: <textbox id="Name" value=""/>
  11. <br />
  12. <button label="Look Up">
  13. <attribute name="onClick">
  14. myBook.loadProfile(Name.text);
  15. </attribute>
  16. </button>
  17.  
  18. <button label="Create New Profile">
  19. <attribute name="onClick">
  20. myBook.createNewProfile(Name.text);
  21. </attribute>
  22. </button>
  23. </p>
  24. <h2>Profile Information</h2>
  25. <p><div style="width:200px;border:3px solid blue;padding:10px;">
  26. Name: <text value="@{myBook.getProfile().getName()}"/><br />
  27. Status: <textbox id="Status" value="@{myBook.getProfile().getStatus()}"/><br />
  28. Email: <textbox id="Email" value="@{myBook.getProfile().getEmail()}"/><br />
  29. Picture: <textbox id="PictureURL" value="@{myBook.getProfile().getPictureThumbUrl()}"/><br />
  30. </div>
  31. </p>
  32. <p>
  33. <button label="Save">
  34. <attribute name="onClick">
  35. myBook.saveProfile();
  36. </attribute>
  37. </button>
  38. </p>
  39. <h2>Preview</h2>
  40. <p>
  41. <img src="@{myBook.getProfile().getPictureThumbUrl()}" paddiing="8" width="150" height="150" alt="&#160;&#160;&#160;User Profile Picture" align="left" />
  42. <br />
  43. <h3> &#160;&#160; Name: <text value="@{myBook.getProfile().getName()}"/></h3>
  44. &#160;&#160;&#160;&#160;&#160;&#160; Status: <text value="@{myBook.getProfile().getStatus()}"/><br />
  45. &#160;&#160;&#160;&#160;&#160;&#160; Email: <text value="@{myBook.getProfile().getEmail()}"/>
  46. </p>
  47. </body>
  48. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement