-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
48 lines (39 loc) · 1.08 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
<!DOCTYPE html>
<html>
<head>
<title>VTOP Marks Total Extension</title>
<link rel="stylesheet" type="text/css" href="popup.css">
</head>
<body id="popupBody">
<h4>VTOP Table Enhancer</h4>
<button id="test">Say Hii</button>
<button id="addTotals">Add Totals Row</button>
<button id="removeTotals">Remove Totals Row</button>
<hr>
<h4>Customizations</h4>
<form id="customizationsForm">
<label>
<input type="checkbox" id="enableLogging">
Enable Logging
</label>
<br>
<label>
<input type="checkbox" id="highlightTotals">
Highlight Total Rows
</label>
<br>
<label>
<input type="checkbox" id="alertBeforeOps">
Alert Before Operations
</label>
<br>
<label>
<input type="checkbox" id="updateOnPage">
Update on Page
</label>
<br>
<button id="saveCustomizations" type="button">Save Customizations</button>
</form>
<script src="code_update.js"></script>
</body>
</html>