-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (42 loc) · 1.8 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
40
41
42
43
<!DOCTYPE html>
<html>
<head>
<title>DataGrabber</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<link rel="stylesheet" href="css/style.css">
<style>
</style>
<script src="scripts/constants.js"></script>
<script src="scripts/utils.js"></script>
<script src="scripts/main.js"></script>
</head>
<body>
<div id="main" class="container">
<h1>DataGrabber</h1>
<div class="form-check">
<input class="form-check-input" type="radio" name="storageType" id="localStorageRadio" value="localStorage" checked>
<label class="form-check-label" for="localStorageRadio">Local Storage</label>
</div>
<div class="form-check">
<input class="form-check-input" type="radio" name="storageType" id="sessionStorageRadio" value="sessionStorage">
<label class="form-check-label" for="sessionStorageRadio">Session Storage</label>
</div>
<div class="form-group">
<select class="form-control" id="primaryKeysDropdown"></select>
</div>
<div class="form-group">
<select class="form-control" id="secondaryKeysDropdown" style="display: none;"></select>
</div>
<div class="form-check">
<input class="form-check-input" type="checkbox" id="showValueCheckbox">
<label class="form-check-label" for="showValueCheckbox">Show value</label>
</div>
<div class="form-check">
<input class="form-check-input" type="checkbox" id="copyToClipboardCheckbox" checked>
<label class="form-check-label" for="copyToClipboardCheckbox">Copy to clipboard</label>
</div>
<button id="grabValueButton" class="btn btn-primary">Grab Value</button>
<span id="statusMsg"></span>
</div>
</body>
</html>