-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoptions.html
More file actions
40 lines (34 loc) · 1.36 KB
/
Copy pathoptions.html
File metadata and controls
40 lines (34 loc) · 1.36 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 lang="en-US">
<head>
<script src = "jquery.min.js"></script>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title> Just Refresh </title>
<link rel="stylesheet" type="text/css" href="options.css" />
</head>
<header> Just Refresh Settings </header> <br>
<body>
<form id="settingsForm" autocomplete="off">
<div class="input-desc"> Interval (mm:ss): </div> <br>
<input type="text" id="minuteField" placeholder="01" maxlength="2" />
<div class="colon">:</div>
<input type="text" id="secondField" placeholder="00" maxlength="2" />
</form>
<div class="per-site"> Per-URL settings </div>
<div class="tableContainer">
<table class="siteTable" id="per-site-table">
<tbody id="tbody">
<tr class="row">
</tr>
</tbody>
</table>
</div>
<input type="image" src="/images/add.svg" class="add" id="addNewSite" /> <br> <br>
<input type="submit" id="submit" form="settingsForm" />
</body>
<footer>
<a class= "support" href="https://ko-fi.com/claxtastic">Say thanks and support me!</a>
</footer>
<script src = "options.js"></script>
</html>