Skip to content
Permalink
4db3e5365e
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
52 lines (40 sloc) 1.03 KB
<!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>
<br>
<br>
<b>Username is</b> :{{username}}
<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="submit" value="Upload Track"></input></a></td>
</tr>
{{/each}}
</table>
<br>
<center><a href="/logout">Logout</a></center>
</main>
</body>
</html>