2014-12-24 15:42:20 +01:00
|
|
|
<div class="input-group custom-search-form">
|
2016-07-08 12:09:33 +02:00
|
|
|
<form action="/search" id="form-search" method=POST>
|
2018-06-05 16:58:04 +02:00
|
|
|
<input type="text" name="query" class="form-control" placeholder="Search Paste">
|
|
|
|
<input type="hidden" name="index_name" class="form-control" value="0" placeholder="Index Name">
|
|
|
|
<span class="input-group-btn">
|
|
|
|
<button class="btn btn-default" type="submit">
|
|
|
|
<i class="fa fa-search"></i>
|
|
|
|
</button>
|
|
|
|
<img id="loading-gif" src="{{url_for('static', filename='image/loading.gif') }}" height="26" width="26" style="margin: 4px; visibility: hidden;">
|
2014-12-24 15:42:20 +01:00
|
|
|
</form>
|
|
|
|
</span>
|
|
|
|
</div>
|
2018-06-05 16:58:04 +02:00
|
|
|
<script>
|
2016-07-08 12:09:33 +02:00
|
|
|
$("#form-search").submit(function( event ) {
|
|
|
|
$("#loading-gif").css("visibility", "visible");
|
|
|
|
});
|
|
|
|
</script>
|