static: work on basic layout + top controls

This commit is contained in:
coon 2023-11-27 20:51:38 +01:00
parent 9a4aadaf75
commit cc0ba05b49
2 changed files with 107 additions and 3 deletions

View file

@ -25,8 +25,45 @@
<input type="range" id="progress" name="progress" min="0" max="100" />
</div>
</div>
<div id="queue-controls">
<div id="queue-volume-controls">
<div id="queue-controls">
<div id="queue-playback-order-controls">
<div>
<input type="checkbox" id="repeat" name="repeat" />
<label for="repeat">repeat</label>
</div>
<div>
<input type="checkbox" id="shuffle" name="shuffle" />
<label for="shuffle">shuffle</label>
</div>
</div>
<div id="queue-xfade-control">
<div>
<label for="xfade">xfade</label>
</div>
<div id="queue-xfade-buttons">
<button>-</button>
<div id="xfade">00</div>
<button>+</button>
</div>
</div>
</div>
<div id="volume-control">
<label for="volume"></label>
<input id="volume" name="volume" type="range" min="1" max="100" />
</div>
</div>
<div class="track-info">
<p>Now playing: 00:00:00/100:00:00</p>
<label for="track">track</label>
<input type="text" id="track" name="track" disabled />
</div>
<div id="top-logo-container">
<div id="top-logo">
<img id="sanic-logo" src="../img/sanic-logo.webp">
Sanic
</div>
</div>
</div>
<div id="queue">
@ -36,7 +73,7 @@
controls bottom
</div>
<div id="footer">
footer
sanic mpd web ui 0.1.0 - by XenGi and coon &copy; 2023
</div>
</div>
</body>