-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
37 lines (35 loc) · 927 Bytes
/
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
<!DOCTYPE HTML>
<html lang="en-US">
<head>
<title>Every Noise at Once for Alexa</title>
<style>
body {
font: 14px GillSansRegular, "Gill Sans MT", "Gill Sans", "Trebuchet MS", sans-serif;
}
h1 a {
color: inherit;
text-decoration: none;
}
h1 em {
color: #333;
}
</style>
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<h1>
<a href="http://everynoise.com">Every Noise at Once</a>
<em>for Alexa</em>
</h1>
<p>This skill requires a Spotify Premium account to play music.</p>
<h2>
<a id="login" href="https://accounts.spotify.com/authorize">Log In to Spotify</a>
<script type="text/javascript">
if(window.location.search) {
var button = document.getElementById("login");
button.href = button.href + window.location.search + "&show_dialog=true";
}
</script>
</h2>
</body>
</html>