+ <div class="form-check form-check-inline">
+ <input class="form-check-input" type="radio" name="query-selector"
+ id="simple" value="simple" {{#unless hStructured}}checked="checked"{{/unless}}>
+ <label class="form-check-label" for="simple">simple</label>
+ </div>
+ <div class="form-check form-check-inline">
+ <input class="form-check-input" type="radio" name="query-selector"
+ id="structured" value="structured" {{#if hStructured}}checked="checked"{{/if}}>
+ <label class="form-check-label" for="structured">structured</label>
+ </div>
+
+ <form class="form-inline" role="search" accept-charset="UTF-8" action="">
+ <div class="form-group-simple {{#if hStructured}}hidden{{/if}}">
+ <input id="q"
+ name="q"
+ type="text"
+ class="form-control form-control-sm"
+ placeholder="Search"
+ value="{{sQuery}}" />
+ </div>
+ <div class="form-group-structured {{#unless hStructured}}hidden{{/unless}}">
+ <div class="form-inline">
+ <input name="street" type="text" class="form-control form-control-sm mr-1"
+ placeholder="House number/Street"
+ value="{{hStructured.street}}" />
+ <input name="city" type="text" class="form-control form-control-sm mr-1"
+ placeholder="City"
+ value="{{hStructured.city}}" />
+ <input id="county" name="county" type="text" class="form-control form-control-sm mr-1"
+ placeholder="County"
+ value="{{hStructured.county}}" />
+ <input name="state" type="text" class="form-control form-control-sm mr-1"
+ placeholder="State"
+ value="{{hStructured.state}}" />
+ <input name="country" type="text" class="form-control form-control-sm mr-1"
+ placeholder="Country"
+ value="{{hStructured.country}}" />
+ <input name="postalcode" type="text" class="form-control form-control-sm mr-1"
+ placeholder="Postal Code"
+ value="{{hStructured.postalcode}}" />
+ </div>
+ </div>
+ <div class="form-group search-button-group">
+ <button type="submit" class="btn btn-primary btn-sm mx-1">Search</button>
+ <input type="hidden" name="viewbox" value="{{sViewBox}}" />
+ <div class="form-check form-check-inline">
+ <input type="checkbox" class="form-check-input"
+ id="use_viewbox" {{#if sViewBox}}checked="checked"{{/if}}>
+ <label class="form-check-label" for="use_viewbox">apply viewbox</label>
+ </div>
+ </div>
+ </form>
+</div>