-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoptions.html
More file actions
42 lines (42 loc) · 1.1 KB
/
Copy pathoptions.html
File metadata and controls
42 lines (42 loc) · 1.1 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
41
42
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Teachable Admin Enhancer Options</title>
<style>
body { font-family: sans-serif; margin: 20px; }
label { display: block; margin-top: 10px; }
input[type="text"] { width: 200px; padding: 5px; }
button { margin-top: 20px; padding: 10px 20px; }
</style>
</head>
<body>
<h1>Theme Options<br>
<small>[in progress]</small></h1>
<form id="optionsForm">
<!-- New option for show/hide notice -->
<label>
Hide Renewal Notice:
<input type="checkbox" id="hideRenewalNoticeInput" />
</label>
<label>
Side Navbar Color:
<input type="text" id="sideNavbarColor" placeholder="#5c4b76">
</label>
<label>
Odd Row Color:
<input type="text" id="oddRowColor" placeholder="#af9dcb">
</label>
<label>
Even Row Color:
<input type="text" id="evenRowColor" placeholder="#c0b2d5">
</label>
<label>
User ID Background:
<input type="text" id="userIdBackground" placeholder="#8d73b4">
</label>
<button type="submit">Save Options</button>
</form>
<script src="dist/options.js"></script>
</body>
</html>