-
Notifications
You must be signed in to change notification settings - Fork 0
/
options_page.html
34 lines (33 loc) · 1.03 KB
/
options_page.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<!-- Copyright (c) 2011 Srikanth Raju, http://srikanthraju.in/scrobbleware -->
<!-- Released under MIT license. See LICENSE file for more information -->
<html>
<head>
<title>scrobbleware</title>
<link rel="stylesheet" type="text/css" href="options.css" />
<script type="text/javascript" src="options.js"></script>
</head>
<body onload="load()">
<center>
<div class="wrapper">
<div id="header">
<img src="scrobbleware.png" />
</div>
<p id="status"></p>
<form>
<p>
<label for="username">Username</label>
<input type="text" id="username">
</p>
<p>
<label for="password">Password</label>
<input type="password" id="password">
</p>
<p>
<input type="button" id="submit" onClick="save_func()" value="OK" />
<input type="button" id="clear" onClick="clear_func()" value="Clear" />
</p>
</form>
</div>
<center>
</body>
</html>