-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
50 lines (49 loc) · 1.97 KB
/
index.html
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
44
45
46
47
48
49
50
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<meta name="theme-color" content="#191414" />
<title>Spotify for KaiOS</title>
<link rel="stylesheet" type="text/css" href="/src/css/root.css" />
<link rel="stylesheet" type="text/css" href="/src/css/input.css" />
<link rel="stylesheet" type="text/css" href="/src/css/player.css" />
<link rel="stylesheet" type="text/css" href="/src/css/login.css" />
</head>
<body>
<div id="root">
<div class="input">
<button id="button" nav-index="0" href="#search"><img src="/assets/icons/search.svg" height="15px" width="15px"></img> Search</button>
<button id="button" nav-index="1" href="#lib"><img src="/assets/icons/star-empty.svg" height="15px" width="15px"></img> Library</button>
</div>
<div class="loginView">
<input nav-index="0" class="field" type="text"/><br></br>
<input nav-index="1" class="field"type="password"/><br></br>
<input type="submit" nav-index="2" class="field" value="Login" onclick="window.alert('login!')"/>
</div>
<div class="tabs" id="search">
<div class="preview">
<img src="https://wsrv.nl/?url=wsrv.nl/lichtenstein.jpg&h=64&w=64"></img>
<div class="nexttoimage">
<span class="title">blablabla</span>
<hr></hr>
<span class="author">blablabla</span>
</div>
</div>
</div>
<div class="tabs" id="lib">
</div>
<div class="player"></div>
<div class="swkey">
<span class="skipPrevious"><img src="/assets/icons/prev.svg"></img></span>
<span class="togglePlay"></span>
<span class="skipNext"><img src="/assets/icons/next.svg"></img></span>
</div>
<img src="/assets/icons/play.svg" class="playbackstate"></img>
</div>
<script src="/src/index.js"></script>
</body>
</html>