Skip to content
Permalink
ef5484962f
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
47 lines (37 sloc) 971 Bytes
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Display all tracks</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>List of Tracks</h1>
</header>
{{#if msg}}
<p class="msg">{{msg}}</p>
{{/if}}
<br>
<br>
<table border="1" align="center" cellspacing="20">
<tr>
<th>Singer-Name</th>
<th>Track</th>
<th>Upload</th>
</tr>
{{#each record}}
<tr>
<td><a href="/singerDetails/{{Singer_Name}}">{{Singer_Name}}</a></td> <td><a href="/trackDetails/{{Track}}">{{Track}}</a></td>
<td><a href="/uploadTrack/{{Song_id}}"><input type="button" value="Upload Track"></input></a></td>
</tr>
{{/each}}
</table>
<br>
<center><a href="/logout">Logout</a></center>
</main>
</body>
</html>