-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.html
More file actions
40 lines (39 loc) · 1.42 KB
/
Copy pathpopup.html
File metadata and controls
40 lines (39 loc) · 1.42 KB
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
<!DOCTYPE html>
<html>
<head>
<style>
body {
min-width: 420px;
overflow-x: hidden;
font-family: Arial, sans-serif;
font-size: 12px;
}
input, textarea {
width: 420px;
}
input#save {
font-weight: bold; width: auto;
}
</style>
</head>
<body>
<form id="addbookmark">
<p><label for="sitename">Sitename</label><br />
<input type="text" id="sitename" name="sitename" size="50" value="" /></p>
<p><label for="username">User Name</label><br />
<input type="text" id="username" name="username" size="50" value="" /></p>
<p><label for="password">Password</label><br />
<input type="password" id="password" name="password" size="50" value="" /></p>
<!-- <p><label for="summary">Summary</label><br />
<textarea id="summary" name="summary" rows="6" cols="35"></textarea></p>
-->
<p><label for="tags">Tags</label><br />
<input type="text" id="tags" name="tags" size="50" value="" /></p>
<p>
<input id="save" type="submit" value="Save Login Info" />
<span id="status-display"></span>
</p>
</form>
<script src="popup.js"></script>
</body>
</html>