botserver/web/desktop/player/index.html
Rodrigo Rodriguez (Pragmatismo) b9395cb0d7 feat(desktop): add new navigation links to index.html
Added new navigation links for Dashboard, Editor, Player, Paper, Settings, Tables, and News sections. Each link includes click handlers to switch sections and active state styling. This expands the application's navigation options for better user access to different features.
2025-11-15 19:52:24 -03:00

26 lines
798 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>Player</title>
<link rel="stylesheet" href="../css/global.css">
<link rel="stylesheet" href="player.css">
</head>
<body>
<div id="main-content">
<div class="content-section active">
<div class="player-container">
<div class="video-container">
<!-- Video element will be inserted here -->
</div>
<div class="player-controls">
<button class="play-btn">Play</button>
<input type="range" class="slider progress-slider" min="0" max="100" value="0">
<span class="time-display">0:00 / 0:00</span>
<input type="range" class="slider volume-slider" min="0" max="100" value="80">
</div>
</div>
</div>
</div>
<script src="player.js"></script>
</body>
</html>