-
Notifications
You must be signed in to change notification settings - Fork 1
/
searchbar.php
26 lines (26 loc) · 1.09 KB
/
searchbar.php
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
<div style="margin-top:25px;">
<center>
<div class="navbar-form">
<input type="text" size="70" class="form-control search-box" placeholder="Search...">
<button class="btn btn-info search-button">Search</button>
<!--<span style="font-size: 90%;"><a> options</a></span>-->
<span class="text-right" style="padding-left:40px;">
<div class="btn-group" data-toggle="buttons" id="topk">
<label class="btn btn-default">
<input type="radio" value="5" />5
</label>
<label class="btn btn-default active">
<input type="radio" value="10" />10
</label>
<label class="btn btn-default">
<input type="radio" value="15" />15
</label>
<label class="btn btn-default">
<input type="radio" value="20" />20
</label>
</div>
</span>
</div>
</center>
</div>
<hr>