Browse Source

first iteration of search functionality - likely to fail hard

master
jk 3 years ago
parent
commit
d0e2c5a7ec
  1. 8
      resources/views/search/index.blade.php

8
resources/views/search/index.blade.php

@ -2,13 +2,13 @@
@csrf
<div class="form-group">
<span id="radios">
<input type="radio" id="summarie" value="summarie" name="table" checked>
<input type="radio" class="form-control" id="summarie" value="summarie" name="table" checked>
<label for="summarie">Beers</label>
<input type="radio" id="brewerie" value="brewerie" name="table" >
<input type="radio" class="form-control" id="brewerie" value="brewerie" name="table" >
<label for="">Breweries</label>
<input type="radio" id="hops" value="hops" name="table" >
<input type="radio" class="form-control" id="hops" value="hops" name="table" >
<label for="">Hops</label>
<input type="radio" id="yeasts" value="yeast" name="table" >
<input type="radio" class="form-control" id="yeasts" value="yeast" name="table" >
<label for="">Yeasts</label></span>
<input type="text" class="form-control" name="search" /> <button type="submit" class="btn btn-primary"><i class="fa fa-search" aria-hidden="true"></i></button>
</div>

Loading…
Cancel
Save