-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathworksheet.html
More file actions
120 lines (109 loc) · 5.74 KB
/
worksheet.html
File metadata and controls
120 lines (109 loc) · 5.74 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<!DOCTYPE html>
<html>
<head>
<link href="css/worksheet.css" rel="stylesheet">
<link href="css/font-awesome-4.5.0/css/font-awesome.min.css" rel="stylesheet">
</head>
<body>
<!--<div class="control-group" id="fields">
<div class="controls">
<form role="form" autocomplete="off">
<div class="entry col-lg-10">
<div class="input-group" id="adv-search">
<input type="text" class="form-control" placeholder="Search for a word">
<div class="input-group-btn">
<div class="btn-group" role="group">-->
<form id="bookForm" method="post" class="form-horizontal">
<div class="form-group">
<label class="col-xs-1 control-label">Book</label>
<div class="col-xs-4">
<input type="text" class="form-control" name="book[0].title" placeholder="Title" />
</div>
<div class="col-xs-4">
<input type="text" class="form-control" name="book[0].isbn" placeholder="ISBN" />
</div>
<div class="col-xs-2">
<input type="text" class="form-control" name="book[0].price" placeholder="Price" />
</div>
<div class="col-xs-1">
<button type="button" class="btn btn-default addButton"><i class="fa fa-plus"></i></button>
</div>
</div>
<!-- The template for adding new field -->
<div class="form-group hide" id="bookTemplate">
<div class="col-xs-4 col-xs-offset-1">
<input type="text" class="form-control" name="title" placeholder="Title" />
</div>
<div class="col-xs-4">
<input type="text" class="form-control" name="isbn" placeholder="ISBN" />
</div>
<div class="col-xs-2">
<input type="text" class="form-control" name="price" placeholder="Price" />
</div>
<div class="col-xs-1">
<button type="button" class="btn btn-default removeButton"><i class="fa fa-minus"></i></button>
</div>
</div>
<div class="form-group">
<div class="col-xs-5 col-xs-offset-1">
<button type="submit" class="btn btn-default">Submit</button>
</div>
</div>
</form>
<!-- our stuff -->
<!--<div class="dropdown dropdown-lg">
<button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown" aria-expanded="false"><span class="caret"></span></button>
<div class="dropdown-menu dropdown-menu-right" role="menu">
<form class="form-horizontal" role="form">
<div class="form-group">
<label for="filter">Part of Speech</label>
<select class="form-control">
<option value="profileID">Verbs</option>
<option value="profileID">Nouns</option>
<option value="profileID">Pronouns</option>
<option value="profileID">Adverbs</option>
<option value="profileID">Adjectives</option>
<option value="profileID">Prepostions</option>
<option value="profileID">conjunctions</option>
<option value="profileID">Interjections</option>
</select>
</div>
<div class="onoffswitch">
<label for="filter">Errors</label>
<input type="checkbox" name="onoffswitch" class="onoffswitch-checkbox" id="myonoffswitch" checked="">
<label class="onoffswitch-label" for="myonoffswitch">
<span class="onoffswitch-inner"></span>
<span class="onoffswitch-switch"></span>
</label>
</div>
<div class="form-group">
<label for="filter">Level</label>
<select class="form-control">
<option value="profileID">1</option>
<option value="profileID">2</option>
<option value="profileID">3</option>
<option value="profileID">4</option>
<option value="profileID">5</option>
<option value="profileID">6</option>
<option value="profileID">7</option>
<option value="profileID">8</option>
</select>
</div>
<div class="form-group">
<label for="contain">Language</label>
<input class="form-control" type="text">
</div>
<div class="form-group">
<label for="contain">Topic</label>
<input class="form-control" type="text">
</div>
</form>
</div>
</div>-->
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="js/bootstrap.min.js"></script>
<script src="js/worksheet.js"></script>
</body>
</html>