-
Notifications
You must be signed in to change notification settings - Fork 7
/
options.html
executable file
·34 lines (33 loc) · 1 KB
/
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
34
<!DOCTYPE html>
<html>
<head>
<title>LeetCode Mask</title>
<link href="css/leetcode.css" rel="stylesheet">
<link href="css/bootstrap.min.css" rel="stylesheet">
</head>
<body class="body-style">
<div>
<div class="form-check tick">
<label class="form-check-label">
<input class="form-check-input" id="hide-locked" type="checkbox" value="">
Hide Locked Questions
</label>
</div>
<div class="form-check tick" >
<label class="form-check-label">
<input class="form-check-input" id="hide-acceptance" type="checkbox" value="">
Hide Acceptance Rate
</label>
</div>
<div class="form-check tick" >
<label class="form-check-label">
<input class="form-check-input" id="hide-difficulty" type="checkbox">
Hide Difficulty
</label>
</div>
<button id="save" class="btn btn-dark btn-block" style="margin: 1%; padding: 1%; font-size:13px">Save</button>
<script src="js/options.js"></script>
<script src="js/bootstrap.min.js"></script>
</div>
</body>
</html>