2013-02-20 20:33:05 -05:00
<!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 >
2013-09-04 15:16:41 -04:00
< img src = "css/images/mblogoicon.png" / > Setup your media library< / h2 >
2013-02-20 20:33:05 -05:00
< 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" >
2013-06-13 11:58:13 -04:00
< p class = "editing_default" > This is the < strong > default media library< / strong > that will be shared with all users unless individual libraries are created.< / p >
2013-02-20 20:33:05 -05:00
< p >
2013-12-01 01:25:19 -05:00
< button type = "button" data-mini = "true" data-icon = "plus" onclick = "MediaLibraryPage.addVirtualFolder();" > Add media collection< / button >
2013-02-20 20:33:05 -05:00
< / p >
< div id = "divVirtualFolders" > < / div >
< / div >
2013-11-28 13:27:29 -05:00
< p > Refer to < a href = "https://github.com/MediaBrowser/MediaBrowser/wiki/Library-Structure" target = "_blank" > media library wiki.< / a > < / p >
2013-02-20 20:33:05 -05:00
< 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" >
2013-07-12 15:56:40 -04:00
< p >
< label id = "lblValue" for = "txtValue" > New name:< / label >
< input type = "text" name = "txtValue" id = "txtValue" required = "required" / >
< / p >
< p id = "fldCollectionType" >
< label for = "selectCollectionType" > Collection type:< / label >
< select id = "selectCollectionType" name = "selectCollectionType" > < / select >
< / p >
2013-10-18 15:47:57 -04:00
< p class = "collectionTypeFieldDescription" >
2013-07-20 16:37:00 -04:00
* Requires the use of a plugin, e.g. GameBrowser or MB Photos.
2013-07-12 15:56:40 -04:00
< / p >
2013-02-20 20:33:05 -05:00
< 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 >
2013-09-05 13:05:39 -04:00
< button type = "button" data-iconpos = "right" data-icon = "arrow-right" data-inline = "true" onclick = "Dashboard.navigate('wizardsettings.html');" > Next< / button >
2013-02-20 20:33:05 -05:00
< / div >
< / div >
< / div >
< / div >
< / body >
< / html >