Skip to content
Permalink
fcd4ef6a4c
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
61 lines (58 sloc) 2.1 KB
<!DOCTYPE html>
<html lang = "en-US">
<head>
<link href = "images/favicon.png" type="image/png" rel="shortcut icon"/>
<meta charset = "UTF-8">
<title>ListenPage.html</title>
<link href="css/mystyle.css" type="text/css" rel="stylesheet" />
<link href="https://fonts.googleapis.com/css?family=Ubuntu&display=swap" rel="stylesheet">
<script defer src="https://use.fontawesome.com/releases/v5.0.6/js/all.js"></script>
</head>
<header>
<link href="css/searchbar.css" type="text/css" rel="stylesheet" />
<h2 class="ram"><a href="/"> <img class="logo2" src="images/newwhite.png" alt="Logo of website"> Uploadify</a></h2>
<section class="searchBox">
<form action="search" autocomplete="on">
<section class="search">
<input type="text" class="searchLook" placeholder="Search..." name="q" >
<button type="submit" class="searchButton">
<i class="fa fa-search"></i>
</button>
</section>
</form>
</section>
<p class="ram font_">
Free Tracks. Forever.
</p>
<hr class="thicker">
</header>
<body>
<section class="grid-container3 font_ black">
<button class="btn2 " onclick="addPlaylist()">Add Playlist</button>
<section class="formPopup" id="myPopup">
<form action="/listen" class="formContainer">
<h1 class="ram">
Create Playlist
</h1>
<input type="text" placeholder="Enter Playlist Name" name="playlist">
<button type="submit" class="btn">Add</button>
<button type="button" class ="btn cancel" onclick="closeForm()">Cancel</button>"
</form>
</section>
<script>
function addPlaylist() {
document.getElementById("myPopup").style.display = "block";
}
function closeForm() {
document.getElementById("myPopup").style.display = "none";
}
</script>
</section>
<h2 class='footer_ram'>Listen to your music, wherever you are</h2>
</body>
<footer class="site-footer">
<section id="footer-content" style="text-align:center">
<p class="integration footer_ram">Copyright 2019 @ Uploadify - All Rights Reserved </p>
</section>
</footer>
</html>