forked from MatthewStanciu/HackClubPlaylist
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
31 lines (31 loc) · 1.13 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
<!DOCTYPE html>
<html>
<head>
<title>State High Hack Club Music</title>
<link href="https://fonts.googleapis.com/css?family=Nunito:400,800" rel="stylesheet">
<link rel="stylesheet" href="/public/style.css">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
</head>
<body>
<a href="https://statehigh.hackclub.com" target="_blank">
<img src="https://statehigh.hackclub.com/logo-primary.svg" width="256" alt="State High Hack Club logo">
</a>
<h1>
Music
</h1>
<div class="sheet">
<form action="/song" method="post" id="urlform">
<label>
Song name
<input class="url" name="submiturl" type="text" placeholder="Bloom" autofocus>
</label>
<label>
Song artist
<input class="artist" name="submitartist" type="text" placeholder="Troye Sivan">
</label>
</form>
<button form="urlform" type="submit">Add to playlist</button>
</div>
<iframe src="https://open.spotify.com/embed/user/lachlanjc/playlist/1GFcGQfzTuluKXn6chPi8O" width="384" height="512" frameborder="0" allowtransparency="true" allow="encrypted-media"></iframe>
</body>
</html>