0
0
mirror of https://github.com/neon-mmd/websurfx.git synced 2024-10-18 14:32:52 -04:00
websurfx/public/templates/search_bar.html

26 lines
747 B
HTML
Raw Normal View History

2023-04-22 07:35:07 -04:00
<div class="search_bar">
<input
type="search"
name="search-box"
value="{{this.pageQuery}}"
placeholder="Type to search"
/>
<button type="submit" onclick="searchWeb()">search</button>
<div class="error_box">
<button onclick="toggleErrorBox()" class="error_box_dropdown">
<img src="./images/info.svg" alt="Info icon for error box" />
</button>
{{#each engineErrorsInfo}}
<div class="error_item">
<span class="engine_name">{{{this.engine}}}</span>
<span class="engine_name">{{{this.error}}}</span>
<span
class="severity_color"
style="background: {{{this.severity_color}}}; width: 400px; height: 400px"
>lsl</span
>
</div>
{{/each}}
</div>
2023-04-22 07:35:07 -04:00
</div>