wizardLibrary.html 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Media Browser</title>
  5. </head>
  6. <body>
  7. <div id="wizardLibraryPage" data-role="page" class="page standalonePage wizardPage mediaLibraryPage">
  8. <div data-role="content">
  9. <div class="ui-corner-all ui-shadow wizardContent">
  10. <h2>
  11. <img src="css/images/movieFolder.png" />Media Library</h2>
  12. <p id="fldUseDefaultLibrary" style="display: none;">
  13. <input type="checkbox" id="chkUseDefaultLibrary" name="chkUseDefaultLibrary" onchange="MediaLibraryPage.setUseDefaultMediaLibrary(this.checked);" />
  14. <label for="chkUseDefaultLibrary">Use default media library</label>
  15. </p>
  16. <div id="divMediaLibrary">
  17. <p>Below are your media collections. Expand a collection to add or remove media locations assigned to it.</p>
  18. <p>
  19. <button type="button" data-icon="plus" onclick="MediaLibraryPage.addVirtualFolder();">Add media collection</button>
  20. </p>
  21. <div id="divVirtualFolders"></div>
  22. </div>
  23. <div data-role="popup" id="popupEnterText" class="ui-corner-all popup">
  24. <div class="ui-corner-top ui-bar-a" style="text-align: center; padding: 0 20px;">
  25. <h3>Rename</h3>
  26. </div>
  27. <div data-role="content" class="ui-corner-bottom ui-content">
  28. <form id="textEntryForm">
  29. <label for="txtValue">New name:</label>
  30. <input type="text" name="txtValue" id="txtValue" required="required" />
  31. <p>
  32. <button type="submit" data-theme="b" data-icon="ok">
  33. Ok
  34. </button>
  35. <button type="button" data-icon="delete" onclick="$(this).parents('.popup').popup('close');">
  36. Cancel
  37. </button>
  38. </p>
  39. </form>
  40. </div>
  41. </div>
  42. <div class="wizardNavigation">
  43. <button type="button" data-iconpos="left" data-icon="arrow-left" data-inline="true" onclick="history.back();">Previous</button>
  44. <button type="button" data-iconpos="right" data-icon="arrow-right" data-inline="true" onclick="Dashboard.navigate('wizardFinish.html');">Next</button>
  45. </div>
  46. </div>
  47. </div>
  48. </div>
  49. </body>
  50. </html>