123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- <!DOCTYPE html>
- <html>
- <head>
- <title> </title>
- </head>
- <body>
- <div id="mediaLibraryPage" data-role="page" class="page type-interior mediaLibraryPage">
- <div data-role="content">
- <div class="content-primary">
- <div data-role="controlgroup" data-type="horizontal" class="localnav" id="userProfileNavigation" style="display: none;" data-mini="true">
- <a href="#" data-role="button" onclick="Dashboard.navigate('editUser.html', true);">Profile</a>
- <a href="#" data-role="button" onclick="Dashboard.navigate('userImage.html', true);">Image</a>
- <a href="#" data-role="button" onclick="Dashboard.navigate('updatePassword.html', true);">Password</a>
- <a href="#" data-role="button" class="ui-btn-active">Media Library</a>
- </div>
- <div class="readOnlyContent">
- <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>
- </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>
- </body>
- </html>
|