mirror of https://github.com/Nezreka/SoulSync.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.4 KiB
41 lines
1.4 KiB
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>SoulSync - Web Mode</title>
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<h1>🎵 SoulSync - Web Mode</h1>
|
|
<p>Your music sync application is running in headless mode.</p>
|
|
|
|
<div class="status">
|
|
<h3>Service Status</h3>
|
|
<div id="status-container">
|
|
<div class="service">
|
|
<span>Spotify:</span>
|
|
<span id="spotify-status" class="disconnected">Checking...</span>
|
|
</div>
|
|
<div class="service">
|
|
<span>Media Server:</span>
|
|
<span id="media-status" class="disconnected">Checking...</span>
|
|
</div>
|
|
<div class="service">
|
|
<span>Soulseek:</span>
|
|
<span id="soulseek-status" class="disconnected">Checking...</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="status">
|
|
<h3>Available Endpoints</h3>
|
|
<ul>
|
|
<li><a href="/status" style="color: #4caf50;">/status</a> - Service status JSON</li>
|
|
<li><a href="/config" style="color: #4caf50;">/config</a> - Configuration info</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
|
|
<script src="{{ url_for('static', filename='script.js') }}"></script>
|
|
</body>
|
|
</html> |