54 lines
No EOL
2 KiB
HTML
54 lines
No EOL
2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Discord Jukebox Status</title>
|
|
<link rel="stylesheet" href="/static/styles.css">
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<header>
|
|
<h1>Discord Jukebox</h1>
|
|
<div id="status-indicator" class="status-indicator">
|
|
<span class="status-dot"></span>
|
|
<span id="status-text">Checking status...</span>
|
|
</div>
|
|
</header>
|
|
|
|
<div id="now-playing" class="hidden">
|
|
<h2>Now Playing</h2>
|
|
<div class="song-info">
|
|
<div id="cover-art-container">
|
|
<img id="cover-art" src="/static/default-cover.png" alt="Album Cover">
|
|
</div>
|
|
<div class="song-details">
|
|
<h3 id="song-title">Loading...</h3>
|
|
<p><strong>Artist:</strong> <span id="song-artist">--</span></p>
|
|
<p><strong>Album:</strong> <span id="song-album">--</span></p>
|
|
<div class="additional-info">
|
|
<p><strong>Duration:</strong> <span id="song-duration">--</span></p>
|
|
<p><strong>Genre:</strong> <span id="song-genre">--</span></p>
|
|
<p><strong>Year:</strong> <span id="song-year">--</span></p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div id="not-playing" class="hidden">
|
|
<div class="message">
|
|
<h2>No Song Playing</h2>
|
|
<p>The jukebox is currently inactive.</p>
|
|
<p>Use <code>/jukebox play</code> in Discord to start the music!</p>
|
|
</div>
|
|
</div>
|
|
|
|
<footer>
|
|
<p>Last updated: <span id="last-update">never</span></p>
|
|
<p class="bot-info">Discord Jukebox Bot</p>
|
|
</footer>
|
|
</div>
|
|
|
|
<script src="/static/app.js"></script>
|
|
</body>
|
|
</html> |