Files
rktplayer/gui/html/library-dialog.html
T

57 lines
2.1 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="styles.css" />
<meta charset="UTF-8" />
<title>RktPlayer - A music player - library entry</title>
</head>
<body>
<div class="pane">
<div class="keyval">
<label for="selected-library-kind" id="lbl-kind">Kind:</label>
<select id="selected-library-kind"></select>
</div>
<hr />
<div class="keyval">
<label for="name" id="lbl-name">Name:</label>
<input type="text" id="name" />
</div>
<div id="filesystem-fields">
<div class="keyval">
<label for="local-path" id="lbl-local-path">Local path:</label>
<div class="file-box">
<input id="local-path" type="text" />
<button id="browse">Browse</button>
</div>
</div>
</div>
<div id="media-server-fields" style="display: none">
<div class="keyval">
<label for="selected-media-server" id="lbl-media-server">Media server:</label>
<div class="file-box">
<select id="selected-media-server"></select>
<button id="refresh-media-servers">Refresh</button>
</div>
</div>
<div class="keyval">
<label for="selected-media-server-container" id="lbl-media-server-root">Start point:</label>
<div class="file-box">
<span id="media-server-root"></span>
<button id="media-server-root-up">Up</button>
<select id="selected-media-server-container"></select>
</div>
</div>
<div class="keyval">
<label for="media-server-item-limit" id="lbl-media-server-item-limit">Maximum items:</label>
<input id="media-server-item-limit" type="number" min="1" />
</div>
</div>
</div>
<div class="button-box">
<button id="ok">OK</button>
<button id="cancel">Cancel</button>
<button id="dev">devtools</button>
</div>
</body>
</html>