1
0
mirror of https://github.com/krateng/maloja.git synced 2023-08-10 21:12:55 +03:00
maloja/auxiliary/chromium_scrobbler/maloja-scrobbler/settings.html
2021-12-24 07:08:28 +01:00

43 lines
843 B
HTML

<!doctype html />
<html>
<head>
<title>Wat</title>
<script type="text/javascript" src="settings.js"></script>
<meta charset="UTF-8">
<style>
@import url('https://fonts.googleapis.com/css?family=Ubuntu');
body {
width:300px;
background-color:#333337;
color:beige;
font-family:'Ubuntu';
}
input {
width:270px;
font-family:'Ubuntu';
outline:none;
border: 0px solid;
padding:2px;
}
span {
line-height: 20px;
}
</style>
</head>
<body>
<div id="wat">
<span id="checkmark_url"></span> <span>Server:</span><br />
<input type="text" id="serverurl" />
<br /><br />
<span id="checkmark_key"></span> <span>API key:</span><br />
<input type="text" id="apikey" />
<br/><br/>
<span>Tabs:</span>
<list id="playinglist">
</list>
</div>
</body>
</html>