mirror of
https://github.com/krateng/maloja.git
synced 2023-08-10 21:12:55 +03:00
47 lines
882 B
HTML
47 lines
882 B
HTML
|
<!DOCTYPE html>
|
||
|
|
||
|
<html>
|
||
|
<head>
|
||
|
<meta charset="UTF-8" />
|
||
|
<title>Maloja - Proxyscrobble</title>
|
||
|
<script src="javascript/cookies.js"></script>
|
||
|
|
||
|
<script>
|
||
|
window.addEventListener("load",function(){
|
||
|
try {
|
||
|
document.getElementById("lastfmlink").href += window.location.href;
|
||
|
}
|
||
|
catch (e) {
|
||
|
}
|
||
|
|
||
|
|
||
|
});
|
||
|
</script>
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
<table class="top_info">
|
||
|
<tr>
|
||
|
<td class="image">
|
||
|
<div style="background-image:url('/favicon.png')"></div>
|
||
|
</td>
|
||
|
<td class="text">
|
||
|
<h1>Proxyscrobble</h1>
|
||
|
|
||
|
<p class="desc">Duplicate your scrobbles to another service.
|
||
|
Your API key is required to make any changes to the server: <input id='apikey' onchange='checkAPIkey()' style='width:300px;'/></p>
|
||
|
</td>
|
||
|
</tr>
|
||
|
</table>
|
||
|
|
||
|
<table class="list">
|
||
|
<tr>
|
||
|
<td>Last.fm</td>
|
||
|
KEY_STATUS_LASTFM
|
||
|
</tr>
|
||
|
</table>
|
||
|
|
||
|
|
||
|
</body>
|
||
|
</html>
|