forked from chinchang/web-maker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.html
58 lines (48 loc) · 951 Bytes
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<!DOCTYPE html>
<html>
<head>
<title>Settings - Web Maker</title>
<style>
body {
font-size: 16px;
}
.btn {
background: #ff8c00;
color: white;
text-shadow: none;
border-radius: 3px;
border: 0;
outline: 0;
padding: 5px 8px;
cursor: pointer;
margin: 5px 0;
font-size: inherit;
}
.status {
color: green;
margin-bottom: 10px;
}
label {
display: block;
margin: 10px 0;
}
</style>
</head>
<body>
<h3>Settings
<span style="opacity: 0.6;font-size:0.7em;">
v3.6.2</span>
</h3>
<form name="optionsForm">
<label>
<input type="checkbox" name="preserveLastCode"> Preserve last written code
</label>
<label>
<input type="checkbox" name="replaceNewTab"> Replace new tab page
</label>
<div id="js-status" class="status"> </div>
<button id="js-save-btn" class="btn">Save</button>
</form>
<script src="options.js"></script>
</body>
</html>