30 lines
1.0 KiB
HTML
30 lines
1.0 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Mopidy Settings</title>
|
|
<link rel="stylesheet" type="text/css" href="mopidy.css">
|
|
</head>
|
|
<body>
|
|
<div class="box focus">
|
|
<h1>Settings</h1>
|
|
<h2>Spotify</h2>
|
|
<p>Please provide your username, password to enable playing music from Spotify.</p>
|
|
<form action="/updateSettings" method="post">
|
|
<p>Username</p>
|
|
<input type="text" name="SPOTIFY_USERNAME" value="" size="15" maxlength="40"/>
|
|
<p>Password</p>
|
|
<input type="password" name="SPOTIFY_PASSWORD" value="" size="10" maxlength="40"/>
|
|
<h2>Last.FM</h2>
|
|
|
|
<p>Please provide the username, password to enable scrobbling via Last.FM.</p>
|
|
<p>Username</p>
|
|
<input type="text" name="LASTFM_USERNAME" value="" size="15" maxlength="40"/>
|
|
<p>Password</p>
|
|
<input type="password" name="LASTFM_PASSWORD" value="" size="10" maxlength="40"/>
|
|
<p><input type="submit" value="Update"/></p>
|
|
</form>
|
|
</div>
|
|
</body>
|
|
</html>
|