-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.html
33 lines (32 loc) · 1000 Bytes
/
options.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Extension Options</title>
<link rel="stylesheet" href="options.css">
</head>
<body>
<h1>Modos Focus</h1>
<form id="addGroupForm">
<label for="newGroup">Create New Group:</label>
<input type="text" id="newGroup" name="newGroup">
<button type="submit" id="addGroupButton">Add Group</button>
</form>
<h2>Groups</h2>
<ul id="group-list"></ul>
<br>
<label for="websiteLink">Enter Website Link:</label>
<input type="text" id="websiteLink" />
<br>
<label for="linkGroup">Select Link Group:</label>
<select id="linkGroup">
<option value="All">All</option>
</select>
<button id="saveLinkButton">Save Link</button>
<div id="statusMessage"></div>
<h2>Saved Links</h2>
<ul id="savedLinks"></ul>
<script src="options.js"></script>
</body>
</html>