Files
Matthias Hinrichs 9b7bdcbc53 first commit
2025-07-05 03:10:41 +02:00

20 lines
1.0 KiB
Plaintext

package components
templ Search() {
<div class="navbar navbar-expand-lg navbar-light bg-white" style="margin-left:220px;">
<div class="container-fluid">
<form class="d-flex dropdown-search" id="stock-search-form" autocomplete="off" style="width:100%;">
<span class="input-group-text" style="background:transparent; border:none; padding-right:0;">
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon icon-tabler icon-tabler-search" viewBox="0 0 24 24">
<circle cx="11" cy="11" r="8"></circle>
<line x1="21" y1="21" x2="16.65" y2="16.65"></line>
</svg>
</span>
<input class="form-control me-2" type="search" placeholder="WKN, ISIN, Name ..." aria-label="Search" id="stock-search-input" autocomplete="off" style="margin-left:-1px;"/>
<button class="btn btn-primary" type="submit">Suchen</button>
<div class="dropdown-menu-search" id="search-dropdown"></div>
</form>
</div>
</div>
}