forked from liamstewart23/ChromeExt-WebsiteIP
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoptions.html
More file actions
57 lines (54 loc) · 1.01 KB
/
options.html
File metadata and controls
57 lines (54 loc) · 1.01 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<!DOCTYPE html>
<html>
<head>
<title>Website IP - Settings</title>
<style>
body {
font-family: Arial, sans-serif;
padding: 20px;
max-width: 600px;
margin: 0 auto;
}
h1 {
font-size: 18px;
}
.ip-entry {
margin-bottom: 10px;
display: flex;
align-items: center;
}
input[type="text"] {
padding: 5px;
margin-right: 5px;
}
.name-input {
width: 100px;
}
.ip-input {
width: 150px;
}
button {
padding: 5px 10px;
cursor: pointer;
}
#add-new {
margin-top: 10px;
}
.error {
color: red;
font-size: 12px;
margin-top: 5px;
}
</style>
</head>
<body>
<h1>IP-Name Associations</h1>
<p>Assign short names (max 10 characters) to IP addresses</p>
<div id="ip-entries">
<!-- IP-name entries will be dynamically inserted here -->
</div>
<button id="add-new">Add New</button>
<div id="status"></div>
<script src="options.js"></script>
</body>
</html>