33 lines
1.1 KiB
HTML
33 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Make this playlist - Search</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
{{ bootstrap.load_css() }}
|
|
</head>
|
|
<body>
|
|
<div class="container text-center">
|
|
<h2>Welcome</h2>
|
|
<p>Choose the music that will play tonight.</p>
|
|
<p>Info: You're in room: <b>{{ roomid }} </b>, the playlist is called: <b>{{ playlistName }} </b></p>
|
|
<form action="{{spotifyURL}}">
|
|
<button class="btn btn-success">Open in Spotify</button>
|
|
</form>
|
|
<form method="POST">
|
|
<div class="form-group">
|
|
<div class="form-inline text-center">
|
|
<label>Enter here the music that you want:</label>
|
|
<label>
|
|
<input type="text" name="search" class="form-control" />
|
|
</label>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="text-center">
|
|
<input type="submit" value="Submit" class="btn btn-primary">
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</body>
|
|
</html> |