-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
70 lines (70 loc) · 2.33 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="icon" href="https://openwhyd.org/favicon.png" type="image/png" />
<title>Openwhyd mobile client (experimental)</title>
<link rel="canonical" href="https://glitch-hello-website.glitch.me/" />
<meta
name="description"
content="A simple website, built with Glitch. Remix it to get your own."
/>
<meta name="robots" content="index,follow" />
<meta property="og:title" content="Hello World!" />
<meta property="og:type" content="article" />
<meta property="og:url" content="https://glitch-hello-website.glitch.me/" />
<meta
property="og:description"
content="A simple website, built with Glitch. Remix it to get your own."
/>
<meta
property="og:image"
content="https://cdn.glitch.com/605e2a51-d45f-4d87-a285-9410ad350515%2Fhello-website-social.png?v=1616712748147"
/>
<meta name="twitter:card" content="summary" />
<link rel="stylesheet" href="/style.css" />
</head>
<body class="pgMobTrackFinder">
<div id="searchField">
<input
id="q"
class="q"
type="text"
value=""
placeholder="Search a track"
autocomplete="off"
autocorrect="off"
autocapitalize="off"
/>
<input type="button" class="searchClear" />
</div>
<div id="searchPane">
<div id="pgMain" class="page">
<div id="pleaseLogin">
please <a href="https://openwhyd.org/mobile">login to Openwhyd</a> first
</div>
<div id="myPlaylists"></div>
<div id="myLastPosts"></div>
</div>
<div id="pgResults" class="page searchResults">
<div id="myPosts">
<h1>My tracks</h1>
No results
</div>
<div id="theirPosts"></div>
<div id="Youtube"></div>
<div id="Soundcloud"></div>
</div>
<div id="pgPlaylist" class="page">
<div id="playlistHeader">
<h1>Playlist: <span id="playlistName"></span></h1>
<div id="exitPlaylist">back</div>
<a id="toYouTube">Play with YouTube</a>
</div>
<div id="playlistTracks"></div>
</div>
</div>
<script type="text/javascript" src="/TrackFinder.js"></script>
</body>
</html>