-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
68 lines (61 loc) · 2.04 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Play</title>
<link rel="stylesheet" type='text/css' href="lib/reset.css">
<link rel="stylesheet" type='text/css' href="lib/main.css">
<link href="https://fonts.googleapis.com/css?family=Racing+Sans+One%7CSriracha" rel="stylesheet">
</head>
<body>
<header>
<div class='head'>
<span class="app-title">Play </span>
<img src="assets/image.png" alt='play' class='play-icon'/>
</div>
</header>
<div class="search-form" id="searchForm">
<input type="text" placeholder="Enter Artist Name" name="artist" id='userArtist' required>
<button type="submit" class="btn" id='submit-artist'>Search</button>
</div>
<p id="favorite-feedback">Welcome! To get started, search an artist's name to find Songs. Then you can add songs to your Favorites and build Playlists from your Favorites. Happy Play-ing!</p>
<div id="artist-search-results"></div>
<div id='favorites-and-playlists'>
<div class='user-content-containers' id='user-favorites'>
<h1>My Favorites</h1>
<table id='favorites'>
<tr>
<th>Title</th>
<th>Artist Name</th>
<th>Genre</th>
<th>Song Rating</th>
<th></th>
</tr>
<tr>
<td class='favorite-name' style="display: none"> </td>
<td class='favorite-artist-name' style="display: none"> </td>
<td class='favorite-genre' style="display: none"> </td>
<td class='favorite-song-rating' style="display: none"> </td>
</tr>
</table>
</div>
<div class='user-content-containers' id='user-playlists'>
<h1>My Playlists</h1>
<table id="playlists">
<tr>
<th>Playlist Title</th>
<th>Ranking</th>
</tr>
<tr>
<td class='playlist-name' style="display: none"> </td>
<td class='playlist-ranking' style="display: none"> </td>
</tr>
</table>
</div>
</div>
<script
src='https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js'>
</script>
<script src="main.bundle.js"></script>
</body>
</html>