forked from web-scrobbler/web-scrobbler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
48 lines (48 loc) · 1.31 KB
/
popup.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<!DOCTYPE html>
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<script type="text/javascript" src="jquery-1.6.1.min.js"></script>
<script type="text/javascript" src="jquery.dump.js"></script>
<script type="text/javascript" src="popup.js"></script>
<style>
body {
color: #D51007;
font-family: "Lucida Grande",Arial,Helvetica,Verdana,sans-serif;
}
#wrapper {
width: 210px;
}
#form {
width: 100%;
}
#valid {
display: none;
padding: 30px;
text-align: center;
}
</style>
</head>
<body>
<div id="wrapper">
<table id="form">
<tr>
<th>Artist</th>
<td><input type="text" id="artist" tabindex="1" autofocus="autofocus"></td>
</tr>
<tr>
<th>Track</th>
<td><input type="text" id="track" tabindex="2"></td>
</tr>
<tr>
<th></th>
<td><input type="submit" id="submit" tabindex="3"></td>
</tr>
</table>
<div id="valid">
<img src="icon_tick_big.png">
</div>
</div>
</body>
</html>