add save playlist modal and other things
This commit is contained in:
parent
d97a33b800
commit
fa7e9bd497
3 changed files with 221 additions and 44 deletions
|
@ -7,6 +7,17 @@
|
|||
<link rel="icon" href="/favicon.ico" sizes="16x16 32x32 48x48 64x64" type="image/png" />
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<dialog id="save-playlist">
|
||||
<h1>Save Playlist</h1>
|
||||
<button class="close">×</button>
|
||||
<form method="dialog">
|
||||
<label for="control-playlist-name">Name</label>
|
||||
<input type="text" id="control-playlist-name" name="playlist-name" autofocus />
|
||||
<button>Save</button>
|
||||
</form>
|
||||
</dialog>
|
||||
|
||||
<main>
|
||||
<div id="nav">
|
||||
<div id="control-admin">
|
||||
|
@ -48,7 +59,10 @@
|
|||
<div class="wide">
|
||||
<div>
|
||||
<label for="control-track">Now playing:</label>
|
||||
<input type="text" id="control-track" name="track" disabled="disabled" />
|
||||
<!--<input type="text" id="control-track" name="track" disabled="disabled" />-->
|
||||
<div class="marquee" id="control-track">
|
||||
<span>Fall On Your Sword - Shatner Of The Mount by Fall On Your Sword</span>
|
||||
</div>
|
||||
</div>
|
||||
<div>
|
||||
<label for="control-time">Time:</label>
|
||||
|
@ -107,9 +121,10 @@
|
|||
<option value="1">basedrive</option><!-- TODO: Remove this line -->
|
||||
</select><!--/#control-playlist-list-->
|
||||
<div>
|
||||
<button>➕ New</button><!-- ➕ Plus -->
|
||||
<button>⬆ Attach</button><!-- ⬆️ Up Arrow -->
|
||||
<button>🗑️ Delete</button><!-- 🗑️ Wastebasket -->
|
||||
<button id="control-replace-playlist">🔄 Replace</button><!-- 🔄 Counterclockwise Arrows Button -->
|
||||
<button id="control-attach-playlist">⬆ Attach</button><!-- ⬆️ Up Arrow -->
|
||||
<button id="control-save-playlist">💾 Save</button><!-- 💾 Floppy Disk -->
|
||||
<button id="control-delete-playlist">🗑️ Delete</button><!-- 🗑️ Wastebasket -->
|
||||
</div>
|
||||
</div><!--/#playlist-browser-->
|
||||
</div><!--/#browser-->
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue