-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathoptions.html
42 lines (39 loc) · 1.04 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
35
36
37
38
39
40
41
42
<!doctype html>
<html>
<head>
<title>Options</title>
<link rel="stylesheet" href="css/materialize.min.css">
<link rel="stylesheet" type="text/css" href="css/options.css">
</head>
<body>
<div class="content">
<h1>Options</h1>
<div class="input-field">
<input id="userName" type="text" value="Jason" class="validate">
<label class="active" for="userName">User Name</label>
</div>
<div class="options-text">
<div>
Auto Start :
</div>
</div>
<div class="options-input">
<div class="switch">
<label>
Off
<input id="start" type="checkbox">
<span class="lever"></span>
On
</label>
</div>
</div>
<div class="options-button">
<a id="save" class="waves-effect waves-light btn">Save</a>
<a id="clear" class="waves-effect waves-light btn">Default</a>
</div>
</div>
<script src="js/jquery-2.2.0.min.js"></script>
<script src="js/materialize.min.js"></script>
<script src="js/options.js"></script>
</body>
</html>