-
Notifications
You must be signed in to change notification settings - Fork 383
Expand file tree
/
Copy pathsearch-bar.component.html
More file actions
23 lines (23 loc) · 933 Bytes
/
search-bar.component.html
File metadata and controls
23 lines (23 loc) · 933 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<div class="row">
<div class="col">
<div class="d-flex">
<div class="p-2">
<form class="form-inline">
<input #edit aria-label="Searchfield" type="text" name="searchField" [ngModel]="searchField"
class="form-control form-control-sm mb-2 mr-2" id="searchField" placeholder="{{placeholder}}"
style="max-width: 160px;" (keypress)="searching()">
<button aria-label="Search" (click)="searching()" type="submit" class="btn btn-outline-primary btn-sm mb-2"><i
class="fas fa-search"></i></button>
</form>
</div>
<div class="p-2">
<div class="d-none d-md-inline-block d-lg-inline-block d-xl-inline-block pt-1 ml-2">
<b>
<span class="text-secondary">{{ itemsCount }} {{ results }}</span>
<i class="{{ icon }} text-secondary ml-2"></i>
</b>
</div>
</div>
</div>
</div>
</div>