-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
51 lines (48 loc) · 2.14 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>PlaylistProxy - Share spotify playlists anonymously</title>
<meta name="description" content="PlaylistProxy - Share playlists anonymously">
<meta name="author" content="PlaylistProxy">
<link rel="stylesheet" href="static/css/main.css">
<script src="static/js/main.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<div class="bg-img"></div>
<main class="grid-container" id="main-content">
<header class="header-nav">
<nav>
<label id="hamlabel" for="hambtn">☰</label>
<input type="checkbox" id="hambtn">
<ul id="nav-items">
<li class="logo-bg home"><a href="index.html">Home</a></li>
<li class="logo-bg github"><a target="_blank" href="https://github.com/okanten">GitHub</a></li>
<li class="logo-bg info"><a href="about.html">Why?</a></li>
</ul>
</nav>
</header>
<section class="title">
<h3 class="text-center">Share spotify playlists anonymously</h3>
<p id="instructions" class="text-center">Paste spotify playlist url below to generate an identical (anonymous) playlist</p>
<section id="errorSection" class="playlist-urls hidden">
<p class="text-center error" id="error">Cloning playlist</p>
</section>
<section id="playlistSection" class="playlist-urls hidden">
<p class="text-center"><a href="" id="proxyPlaylistIdUrl" target="_blank" alt="new spotify playlist link"></a></p>
<input class="text-center" id="proxyPlaylistIdUri" type="text" readonly value="spotify:playlist:{{playlist_id}}" />
<p class="text-center" id="copyProgress">Cloning playlist</p>
</section>
<hr />
</section>
<section class="form">
<form id="clonePlaylistForm" class="newline" class="fill-width">
<input type="text" id="playlistName" placeholder="Playlist name (optional)">
<input type="text" id="playlistUrl" placeholder="Playlist URL or URI">
<input type="submit" id="btnSubmit" value="Anonymize" />
</form>
</section>
</main>
</body>
</html>