69 lines
2.3 KiB
HTML
69 lines
2.3 KiB
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<title>Spotify Duplicate Finder</title>
|
|
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css">
|
|
<link rel="stylesheet" href="https://netdna.bootstrapcdn.com/font-awesome/3.0.2/css/font-awesome.css">
|
|
<link rel="stylesheet" href="./style.css">
|
|
</head>
|
|
|
|
<body>
|
|
<div class="container">
|
|
<div id="login">
|
|
<h1>This is an example of the Authorization Code flow</h1>
|
|
<a href="/login" class="btn btn-primary">Log in with Spotify</a>
|
|
</div>
|
|
<div id="loggedin">
|
|
<h1>Duplicates finder</h1>
|
|
<div id="user-profile">
|
|
</div>
|
|
|
|
<div class="media">
|
|
<div class="pull-left">
|
|
<h2 id="playlists-title">Playlists
|
|
<button class="btn btn-default has-spinner" id="get-playlists">
|
|
Refresh <span class="spinner"><i class="icon-spin icon-refresh"></i></span>
|
|
</button>
|
|
</h2>
|
|
<div id="playlists">
|
|
</div>
|
|
</div>
|
|
<div class="media-body">
|
|
<div id="dups">
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<script id="playlists-template" type="text/x-handlebars-template">
|
|
{{#list playlists}}
|
|
<a class="pl_item list-group-item has-spinner" href="/pl/{{pl_uid}}/{{pl_id}}">
|
|
{{pl_name}}
|
|
<span class="spinner"><i class="icon-spin icon-refresh"></i></span>
|
|
<i class="glyphicon glyphicon-chevron-right"></i>
|
|
</a>
|
|
{{/list}}
|
|
</script>
|
|
|
|
<script id="user-profile-template" type="text/x-handlebars-template">
|
|
Logged in as {{display_name}}
|
|
<button class="btn btn-default has-spinner" id="obtain-new-token">
|
|
Refresh token <span class="spinner"><i class="icon-spin icon-refresh"></i></span>
|
|
</button>
|
|
</script>
|
|
|
|
<script id="dups-template" type="text/x-handlebars-template">
|
|
<h2>Duplicates in {{pl_name}}</h2>
|
|
{{message}}
|
|
{{#list dups}}
|
|
<div class="list-group-item">{{dup_trackname}} - {{dup_artist}}</div>
|
|
{{/list}}
|
|
</script>
|
|
|
|
<script src="//cdnjs.cloudflare.com/ajax/libs/handlebars.js/2.0.0-alpha.1/handlebars.min.js"></script>
|
|
<script src="https://code.jquery.com/jquery-1.12.3.min.js"></script>
|
|
<script src="./script.js"></script>
|
|
</body>
|
|
</html>
|
|
|