-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.html
More file actions
43 lines (38 loc) · 1.24 KB
/
Copy pathapp.html
File metadata and controls
43 lines (38 loc) · 1.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Spotify App</title>
<link rel="stylesheet" href="app.css">
</head>
<body>
<div id="app-container">
<h1>Bine ai venit!</h1>
<p>Se încarcă profilul tău...</p>
</div>
<!-- Search Modal -->
<div id="search-modal" class="search-modal">
<div class="search-content">
<button id="close-search" class="close-search">✕</button>
<h2>Caută Piese, Artiști sau Albume</h2>
<input type="text" id="search-input" placeholder="Scrie pentru a căuta...">
<div id="search-results" class="search-results"></div>
</div>
</div>
<!-- Player Bar -->
<div id="player-bar" class="player-bar">
<div class="player-content">
<img id="current-track-image" src="" alt="Track">
<div class="track-meta">
<p id="current-track-name">-</p>
<p id="current-track-artist">-</p>
</div>
<button id="play-btn" class="player-btn">▶ Play</button>
<button id="pause-btn" class="player-btn">⏸ Pause</button>
<button id="close-player" class="player-btn">✕</button>
</div>
</div>
<script src="https://sdk.scdn.co/spotify-player.js"></script>
<script type="module" src="./app.js"></script>
</body>
</html>