Skip to content
Permalink
19472d0b73
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
50 lines (37 sloc) 980 Bytes
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Playlist</title>
<meta name="description" content="form to add new books">
<meta name="author" content="Mark Tyers">
<link href="{{host}}/style.css" type="text/css" rel="stylesheet" />
</script>
</head>
<body>
<header>
<h1>PlayList</h1>
</header>
<b>Username is</b> :{{username}}
<br>
<br>
<table border="1" align="center" cellspacing="10">
<tr>
<th>SingerName</th>
<th>Track</th>
<th>Play/Pause</th>
</tr>
{{#each playlist}}
<tr>
<td><a href="/singerDetails/{{singer_name}}">{{singer_name}}</a></td> <td><a href="/trackDetails/{{Track_name}}">{{Track_name}}</a></td>
<td><audio controls preload="none">
<source src='{{trackSource}}' type="audio/mpeg">
</audio></td>
</tr>
{{/each}}
</table>
<br>
<center><a href="/logout">Logout</a></center>
</main>
</body>
</html>