-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
39 lines (33 loc) · 1.6 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" />
<link rel="stylesheet" type="text/css" href="styles/theme.css">
<script type="text/javascript" src="js/plugin.js"></script>
</head>
<body>
<div class="tab">
<button id="tabInspector" class="tablinks" onclick="openTab(event, 'Inspector')">Inspector</button>
<button class="tablinks" onclick="openTab(event, 'Settings')">Settings</button>
<button class="tablinks" onclick="openTab(event, 'TnC')">Terms and Conditions</button>
</div>
<div id="Inspector" class="tabcontent">
<div id="message" class="feedback"></div>
<div id="myForm" class="myForm">
<input type="checkbox" id="chkTncAccept" name="chkTncAccept" class="myCheckboxClass">
<label for="chkTncAccept">I confirm that I have read and agree to the terms and conditions</label><br>
<button id="btnScan" class="modernButton">Scan for missing items</button>
</div>
</div>
<div id="Settings" class="tabcontent">
<input type="checkbox" id="chkAutoScanOnLibChange" name="chkAutoScanOnLibChange" class="myCheckboxClass">
<label for="chkAutoScanOnLibChange">Automatically scan after changing libraries.</label><br>
<button id="btnSettingsSave" class="modernButton">Save</button>
<button id="btnSettingsDefault" class="modernButtonOrange">Load Defaults</button>
</div>
<div id="TnC" class="tabcontent">
<div id="tnc" class="tnc"></div>
</div>
</body>
</html>