-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
69 lines (59 loc) · 1.29 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>IndexedDB Extension</title>
<script src="popup.js"></script>
<style>
/* Inline CSS for styling */
body {
width: 210px;
padding: 20px;
text-align: center;
}
h1 {
font-size: 20px;
}
button {
background-color: #0073e6;
color: #fff;
border: none;
padding: 10px 20px;
margin: 10px;
cursor: pointer;
}
button:hover {
background-color: #005ba4;
}
input {
width: 100%;
padding: 12px 20px;
margin: 8px 0;
box-sizing: border-box;
}
/* popup.css */
body {
font-family: Arial, sans-serif;
}
ul {
list-style-type: none;
padding: 0;
}
li {
margin-bottom: 8px;
}
</style>
</head>
<body>
<h1>IndexedDB Extension</h1>
<input type="text" id="username" placeholder="Enter username">
<input type="number" id="age" placeholder="Enter age">
<button id="insertBtn">Insert</button>
<button id="updateBtn">Update</button>
<button id="deleteBtn">Delete All</button>
<button id="listBtn">List Data</button>
<ul id="resultList"></ul>
<script src="popup.js"></script>
</body>
</html>