-
Notifications
You must be signed in to change notification settings - Fork 2
/
search.html
31 lines (31 loc) · 1.41 KB
/
search.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
<div xmlns="http://www.w3.org/1999/xhtml" data-template="templates:surround" data-template-with="templates/page.html" data-template-at="content">
<div class="row">
<div class="col-md-12">
<div class="page-header">
<h1>Search Plays</h1>
</div>
<form class="form-inline" role="form">
<div class="form-group">
<label class="sr-only" for="inputKeyword">Keywords: </label>
<input type="text" class="form-control" id="inputKeyword" name="term" placeholder="Keywords"/>
</div>
<div class="form-group">
<label for="inputField"> Limit by: </label>
<select name="field" if="inputField">
<option value="">All</option>
<option value="title">Title</option>
<option value="sp">Speech/Lines</option>
<option value="stage">Stage Directions</option>
</select>
</div>
<div class="form-group">
<button class="btn btn-default" type="submit">
<span class="glyphicon glyphicon-search"/>
</button>
</div>
</form>
<hr/>
<div data-template="search:display-results"/>
</div>
</div>
</div>