-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoptions.html
More file actions
68 lines (49 loc) · 1.93 KB
/
Copy pathoptions.html
File metadata and controls
68 lines (49 loc) · 1.93 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<link rel="icon" href="favicon.ico">
<script src="dist/js/jquery-2.1.3.min.js"></script>
<title>vocabTab</title>
<!-- Bootstrap core CSS -->
<link href="dist/css/bootstrap.min.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="options.css" rel="stylesheet">
<link href="/dist/css/bootstrap-switch.min.css" rel="stylesheet">
<script src="/dist/js/bootstrap-switch.min.js"></script>
</head>
<body>
<div class="container">
<div class="header">
<!-- <nav>
<ul class="nav nav-pills pull-right">
<li role="presentation" class="active"><a href="#">Home</a></li>
<li role="presentation"><a href="#">About</a></li>
<li role="presentation"><a href="#">Contact</a></li>
</ul>
</nav> -->
<h3 class="text-muted" align="right">vocabTab <i class="glyphicon glyphicon-leaf" style="color:green"></i> </h3>
</div>
<div class="alert alert-info" role="alert" align="left"><strong>Options!</strong><br>Please set options below and then click Save to store your settings.</div>
<div class="row marketing">
<div class="col-lg-6">
<label>Name: </label>
<input type='text' id='userName' name='userName' placeholder='Your Name'>
<br>
<label>Use background image?</label>
<input type="checkbox" name="background-checkbox" checked>
<br>
<br>
<button class='btn btn-primary save'>Save Changes and Return</button>
</div>
</div>
</div>
<!-- /container -->
<!-- Run the scripts, yah? -->
<script src="options.js"></script>
</body>
</html>