21 lines
705 B
HTML
21 lines
705 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
<div class="row">
|
|
<div class="col-md-8 col-md-offset-2">
|
|
<form action="/search">
|
|
<div class="input-group input-group-lg">
|
|
<input type="text" class="form-control" name="q" placeholder="search term" autofocus>
|
|
<span class="input-group-btn">
|
|
<button class="btn btn-primary" type="submit"><i class="glyphicon glyphicon-search"></i></button>
|
|
</span>
|
|
</div>
|
|
<div class="text-right">
|
|
<input type="checkbox" id="smartsearch" name="smartsearch">
|
|
<label for="smartsearch">SmartSearch</label>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|