mirror of
https://github.com/mempool/mempool.git
synced 2025-03-01 01:00:00 +01:00
10 lines
782 B
HTML
10 lines
782 B
HTML
<form [formGroup]="searchForm" (submit)="searchForm.valid && search()" novalidate>
|
|
<div class="d-flex">
|
|
<div class="search-box-container mr-2">
|
|
<input #instance="ngbTypeahead" [ngbTypeahead]="typeaheadSearchFn" (selectItem)="itemSelected()" (focus)="focus$.next($any($event).target.value)" (click)="click$.next($any($event).target.value)" formControlName="searchText" type="text" class="form-control" i18n-placeholder="search-form.searchbar-placeholder" placeholder="TXID, block height, hash or address">
|
|
</div>
|
|
<div>
|
|
<button [disabled]="isSearching" type="submit" class="btn btn-block btn-primary"><fa-icon [icon]="['fas', 'search']" [fixedWidth]="true" i18n-title="search-form.search-title" title="Search"></fa-icon></button>
|
|
</div>
|
|
</div>
|
|
</form>
|