templates/frontoffice/components/search-bar.html.twig line 1

Open in your IDE?
  1. <div class="row mt-5">
  2.     <div class="form-group col-12">
  3.         <input
  4.                 id="search"
  5.                 class="form-control col-12 search-input"
  6.                 type="text"
  7.                 autocomplete="off"
  8.                 placeholder="{{ 'front.search.placeholder' | trans }}"
  9.                 value="{{ searchedComponent }}"
  10.                 data-url="{{ path('autocomplete_components')}}"
  11.                 data-dst="{{ path('getVulnerabilities', {'cpe23': "{cpe}", 'title': "{title}"})}}"
  12.         />
  13.         <i class="fas fa-search search-input-icon"></i>
  14.         <div id="dependencies-suggestions" class="d-none">
  15.             <ul id="dependencies-suggestions-list">
  16.             </ul>
  17.         </div>
  18.     </div>
  19. </div>