57 lines
1.1 KiB
HTML
57 lines
1.1 KiB
HTML
@include hdr.html@
|
|
<table style="width:100%;">
|
|
<tr>
|
|
<td valign="top" style="width:20%;">
|
|
Source<br />
|
|
<select id="source" name="select" size="20">
|
|
<option value="1">Library</option>
|
|
</select>
|
|
<div id="busymsg" style="text-align:center;color:red;">Busy ...</div>
|
|
</td>
|
|
|
|
<td valign="top" style="width:80%;" >
|
|
|
|
<table id="browse">
|
|
<tr>
|
|
<td style="width:30%;" >
|
|
Genre<br />
|
|
<select id="genre" name="select" multiple="multiple" size="10">
|
|
|
|
</select>
|
|
</td>
|
|
<td style="width:35%;">
|
|
Artist<br />
|
|
<select id="artist" name="select" multiple="multiple" size="10">
|
|
|
|
</select>
|
|
</td>
|
|
<td style="width:35%;">
|
|
Album<br />
|
|
<select id="album" name="select" multiple="multiple" size="10">
|
|
|
|
</select>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
|
|
<div class="" style="break: both;">
|
|
<table id="songs" class="mytable" border="0" cellspacing="0" cellpadding="0">
|
|
<thead>
|
|
<tr>
|
|
<th>Song</th>
|
|
<th>Time</th>
|
|
<th>Artist</th>
|
|
<th>Album</th>
|
|
<th>Genre</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody class="mytbody">
|
|
<tr><td></td><td></td><td></td><td></td><td></td></tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
@include ftr.html@
|