library.html 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title> </title>
  5. </head>
  6. <body>
  7. <div id="mediaLibraryPage" data-role="page" class="page type-interior mediaLibraryPage">
  8. <div data-role="content">
  9. <div class="content-primary">
  10. <div data-role="controlgroup" data-type="horizontal" class="localnav" id="userProfileNavigation" style="display: none;" data-mini="true">
  11. <a href="#" data-role="button" onclick="Dashboard.navigate('editUser.html', true);">Profile</a>
  12. <a href="#" data-role="button" onclick="Dashboard.navigate('userImage.html', true);">Image</a>
  13. <a href="#" data-role="button" onclick="Dashboard.navigate('updatePassword.html', true);">Password</a>
  14. <a href="#" data-role="button" class="ui-btn-active">Media Library</a>
  15. </div>
  16. <div class="readOnlyContent">
  17. <p id="fldUseDefaultLibrary" style="display: none;">
  18. <input type="checkbox" id="chkUseDefaultLibrary" name="chkUseDefaultLibrary" onchange="MediaLibraryPage.setUseDefaultMediaLibrary(this.checked);" />
  19. <label for="chkUseDefaultLibrary">Use default media library</label>
  20. </p>
  21. <div id="divMediaLibrary">
  22. <p>Below are your media collections. Expand a collection to add or remove media locations assigned to it.</p>
  23. <p>
  24. <button type="button" data-icon="plus" onclick="MediaLibraryPage.addVirtualFolder();">Add media collection</button>
  25. </p>
  26. <div id="divVirtualFolders"></div>
  27. </div>
  28. </div>
  29. </div>
  30. </div>
  31. <div data-role="popup" id="popupEnterText" class="ui-corner-all popup">
  32. <div class="ui-corner-top ui-bar-a" style="text-align: center; padding: 0 20px;">
  33. <h3>Rename</h3>
  34. </div>
  35. <div data-role="content" class="ui-corner-bottom ui-content">
  36. <form id="textEntryForm">
  37. <label for="txtValue">New name:</label>
  38. <input type="text" name="txtValue" id="txtValue" required="required" />
  39. <p>
  40. <button type="submit" data-theme="b" data-icon="ok">
  41. Ok
  42. </button>
  43. <button type="button" data-icon="delete" onclick="$(this).parents('.popup').popup('close');">
  44. Cancel
  45. </button>
  46. </p>
  47. </form>
  48. </div>
  49. </div>
  50. </div>
  51. </body>
  52. </html>