123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- <!DOCTYPE html>
- <html>
- <head>
- <title>Media Browser</title>
- </head>
- <body>
- <div id="wizardLibraryPage" data-role="page" class="page standalonePage wizardPage mediaLibraryPage">
- <div data-role="content">
- <div class="ui-corner-all ui-shadow wizardContent">
- <h2>
- <img src="css/images/movieFolder.png" />Media Library</h2>
- <p id="fldUseDefaultLibrary" style="display: none;">
- <input type="checkbox" id="chkUseDefaultLibrary" name="chkUseDefaultLibrary" onchange="MediaLibraryPage.setUseDefaultMediaLibrary(this.checked);" />
- <label for="chkUseDefaultLibrary">Use default media library</label>
- </p>
- <div id="divMediaLibrary">
- <p>Below are your media collections. Expand a collection to add or remove media locations assigned to it.</p>
- <p>
- <button type="button" data-icon="plus" onclick="MediaLibraryPage.addVirtualFolder();">Add media collection</button>
- </p>
- <div id="divVirtualFolders"></div>
- </div>
- <div data-role="popup" id="popupEnterText" class="ui-corner-all popup">
- <div class="ui-corner-top ui-bar-a" style="text-align: center; padding: 0 20px;">
- <h3>Rename</h3>
- </div>
- <div data-role="content" class="ui-corner-bottom ui-content">
- <form id="textEntryForm">
- <label for="txtValue">New name:</label>
- <input type="text" name="txtValue" id="txtValue" required="required" />
- <p>
- <button type="submit" data-theme="b" data-icon="ok">
- Ok
- </button>
- <button type="button" data-icon="delete" onclick="$(this).parents('.popup').popup('close');">
- Cancel
- </button>
- </p>
- </form>
- </div>
- </div>
- <div class="wizardNavigation">
- <button type="button" data-iconpos="left" data-icon="arrow-left" data-inline="true" onclick="history.back();">Previous</button>
- <button type="button" data-iconpos="right" data-icon="arrow-right" data-inline="true" onclick="Dashboard.navigate('wizardFinish.html');">Next</button>
- </div>
- </div>
- </div>
- </div>
- </body>
- </html>
|