11 lines
		
	
	
		
			780 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			780 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]="typeaheadSearch" (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>
 |